Changeset 745 for trunk/server/source3/librpc/idl/notify.idl
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source3/librpc/idl/notify.idl
r414 r745 1 1 #include "idl_types.h" 2 3 import "file_id.idl", "server_id.idl"; 2 4 3 5 /* … … 61 63 } notify_event; 62 64 65 typedef [v1_enum] enum { 66 FILE_ACTION_ADDED = 0x00000001, 67 FILE_ACTION_REMOVED = 0x00000002, 68 FILE_ACTION_MODIFIED = 0x00000003, 69 FILE_ACTION_RENAMED_OLD_NAME = 0x00000004, 70 FILE_ACTION_RENAMED_NEW_NAME = 0x00000005, 71 FILE_ACTION_ADDED_STREAM = 0x00000006, 72 FILE_ACTION_REMOVED_STREAM = 0x00000007, 73 FILE_ACTION_MODIFIED_STREAM = 0x00000008 74 } FILE_NOTIFY_ACTION; 75 76 /* structure sent at the CIFS layer */ 77 /* Align on 4-byte boundary according to MS-CIFS 2.2.7.4.2 */ 78 typedef [public,gensize,flag(NDR_ALIGN4)] struct { 79 uint32 NextEntryOffset; 80 FILE_NOTIFY_ACTION Action; 81 [value(strlen_m(FileName1)*2)] uint32 FileNameLength; 82 [charset(UTF16),flag(STR_NOTERM)] uint16 FileName1[FileNameLength]; 83 } FILE_NOTIFY_INFORMATION; 63 84 }
Note:
See TracChangeset
for help on using the changeset viewer.