diff options
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/opendb.idl | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/source4/librpc/idl/opendb.idl b/source4/librpc/idl/opendb.idl new file mode 100644 index 0000000000..3754d233f6 --- /dev/null +++ b/source4/librpc/idl/opendb.idl @@ -0,0 +1,39 @@ +#include "idl_types.h" + +/* + IDL structures for opendb code + + this defines the structures used in the opendb database code, in + ntvfs/common/opendb.c +*/ + +[ + pointer_default(unique) +] +interface opendb +{ + typedef struct { + uint32 server; + uint32 stream_id; + uint32 share_access; + uint32 access_mask; + pointer file_handle; + /* we need a per-entry delete on close, as well as a per-file + one, to cope with strange semantics on open */ + bool8 delete_on_close; + } opendb_entry; + + typedef struct { + uint32 server; + pointer notify_ptr; + } opendb_pending; + + typedef [public] struct { + bool8 delete_on_close; + utf8string path; + uint32 num_entries; + opendb_entry entries[num_entries]; + uint32 num_pending; + opendb_pending pending[num_pending]; + } opendb_file; +} |