diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-19 17:01:06 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-19 17:01:06 +0000 |
commit | 7aa5495c18f21eaa1397e8b0751b71810ccf38b7 (patch) | |
tree | 73508a1c280f82711676b6254f815cd1a5ffae9b /source3/include | |
parent | 54ffd7f5c9251382874d9c47611d5c666f782f6b (diff) | |
download | samba-7aa5495c18f21eaa1397e8b0751b71810ccf38b7.tar.gz samba-7aa5495c18f21eaa1397e8b0751b71810ccf38b7.tar.bz2 samba-7aa5495c18f21eaa1397e8b0751b71810ccf38b7.zip |
creating NetShareEnum parsing / reply creation. compiles, but untested.
(This used to be commit 0a191ee5047b2c81c7adb0554c39ec43d8690230)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index d847c6f342..7fa19eaa19 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -156,10 +156,11 @@ implemented */ #define DENY_FCB 7 /* share types */ -#define STYPE_DISKTREE 0 /* Disk drive */ -#define STYPE_PRINTQ 1 /* Spooler queue */ -#define STYPE_DEVICE 2 /* Serial device */ -#define STYPE_IPC 3 /* Interprocess communication (IPC) */ +#define STYPE_DISKTREE 0 /* Disk drive */ +#define STYPE_PRINTQ 1 /* Spooler queue */ +#define STYPE_DEVICE 2 /* Serial device */ +#define STYPE_IPC 3 /* Interprocess communication (IPC) */ +#define STYPE_HIDDEN 0x80000000 /* share is a hidden one (ends with $) */ /* SMB X/Open error codes for the ERRdos error class */ #define ERRbadfunc 1 /* Invalid function (or system call) */ |