wmi-1.3.16 from opsview.com

This commit is contained in:
Are Casilla
2019-02-16 00:16:52 +01:00
parent 163fdd3d1b
commit 17b3af2911
2146 changed files with 678824 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
#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 */
boolean8 delete_on_close;
uint32 oplock_level;
} opendb_entry;
typedef struct {
uint32 server;
pointer notify_ptr;
} opendb_pending;
typedef [public] struct {
boolean8 delete_on_close;
utf8string path;
uint32 num_entries;
opendb_entry entries[num_entries];
uint32 num_pending;
opendb_pending pending[num_pending];
} opendb_file;
}