diff options
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/srvsvc.idl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/librpc/idl/srvsvc.idl b/source4/librpc/idl/srvsvc.idl index 4d737a6c0d..a9d43539e9 100644 --- a/source4/librpc/idl/srvsvc.idl +++ b/source4/librpc/idl/srvsvc.idl @@ -370,6 +370,14 @@ /**************************/ /* srvsvc_NetShare */ /**************************/ + + /* share types */ + const int STYPE_DISKTREE = 0; + const int STYPE_PRINTQ = 1; + const int STYPE_DEVICE = 2; /* Serial device */ + const int STYPE_IPC = 3; /* Interprocess communication (IPC) */ + const int STYPE_HIDDEN = 0x80000000; /* share is a hidden one */ + typedef struct { unistr *name; } srvsvc_NetShareInfo0; |