blob: a390fa8a0b6f28a3e2c091128bc173b180ec466e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/* header auto-generated by pidl */
#include <stdint.h>
#include "libcli/util/ntstatus.h"
#ifndef _HEADER_notify
#define _HEADER_notify
struct notify_entry {
struct server_id server;
uint32_t filter;
uint32_t subdir_filter;
uint32_t dir_fd;
struct file_id dir_id;
const char * path;/* [flag(LIBNDR_FLAG_STR_UTF8|LIBNDR_FLAG_STR_NULLTERM)] */
uint32_t path_len;
void* private_data;
}/* [public] */;
struct notify_entry_array {
uint32_t num_entries;
struct notify_entry *entries;
}/* [public] */;
struct notify_depth {
uint32_t max_mask;
uint32_t max_mask_subdir;
uint32_t num_entries;
struct notify_entry *entries;
};
struct notify_array {
uint32_t num_depths;
struct notify_depth *depth;
}/* [public] */;
struct notify_event {
uint32_t action;
const char * path;/* [flag(LIBNDR_FLAG_STR_UTF8|LIBNDR_FLAG_STR_NULLTERM)] */
void* private_data;
}/* [public] */;
#endif /* _HEADER_notify */
|