diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-01-31 11:48:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:17:33 -0500 |
commit | 8bfa9351614115ceb8bfaa6f76355ddc14ec248b (patch) | |
tree | d74dcfe5ed206d06f2c036d81a45f094013619b2 /source3/librpc/gen_ndr/notify.h | |
parent | 05f298b47e4493ccf04b8a1698c0593c8a0deaac (diff) | |
download | samba-8bfa9351614115ceb8bfaa6f76355ddc14ec248b.tar.gz samba-8bfa9351614115ceb8bfaa6f76355ddc14ec248b.tar.xz samba-8bfa9351614115ceb8bfaa6f76355ddc14ec248b.zip |
r21074: Preparation for the import of samba4 notify: Add the file notify.idl and the
resulting marshalling/unmarshalling routines in gen_ndr/
Volker
(This used to be commit a2ea54c23456925a8ed317edb1adf82d074041fc)
Diffstat (limited to 'source3/librpc/gen_ndr/notify.h')
-rw-r--r-- | source3/librpc/gen_ndr/notify.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/source3/librpc/gen_ndr/notify.h b/source3/librpc/gen_ndr/notify.h new file mode 100644 index 0000000000..f85b9b1bac --- /dev/null +++ b/source3/librpc/gen_ndr/notify.h @@ -0,0 +1,33 @@ +/* header auto-generated by pidl */ + +#ifndef _HEADER_notify +#define _HEADER_notify + +struct notify_entry { + struct server_id server; + uint32_t filter; + uint32_t subdir_filter; + const char * path;/* [flag(LIBNDR_FLAG_STR_UTF8|LIBNDR_FLAG_STR_NULLTERM)] */ + uint32_t path_len; + void* private_data; +}/* [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 */ |