source: branches/samba-3.5.x/source3/librpc/gen_ndr/notify.h

Last change on this file was 414, checked in by Herwig Bauernfeind, 16 years ago

Samba 3.5.0: Initial import

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