Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/librpc/idl/notify.idl

    r414 r745  
    11#include "idl_types.h"
     2
     3import "file_id.idl", "server_id.idl";
    24
    35/*
     
    6163        } notify_event;
    6264
     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;
    6384}
Note: See TracChangeset for help on using the changeset viewer.