summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-12-03 20:18:20 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:05:43 -0500
commit15fbacc34a88defee99fd13680a4ba30e010e8cd (patch)
treeb072f5baa86c5566b51b9b76ca8ee0e9ee0d6023 /source3/include
parent05ac2de0df78d22ad5afb42ea5c72ba17bef8395 (diff)
downloadsamba-15fbacc34a88defee99fd13680a4ba30e010e8cd.tar.gz
samba-15fbacc34a88defee99fd13680a4ba30e010e8cd.tar.bz2
samba-15fbacc34a88defee99fd13680a4ba30e010e8cd.zip
r12052: Remove unused typedefs
(This used to be commit 612ec4de75ad06f2b12176439f96f8e5662a7d77)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/smb.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index 50b8c0369f..b2d28b7d70 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -330,49 +330,6 @@ typedef struct _nt_user_token {
SE_PRIV privileges;
} NT_USER_TOKEN;
-/*** query a local group, get a list of these: shows who is in that group ***/
-
-/* local group member info */
-typedef struct local_grp_member_info
-{
- DOM_SID sid ; /* matches with name */
- uint8 sid_use; /* usr=1 grp=2 dom=3 alias=4 wkng=5 del=6 inv=7 unk=8 */
- fstring name ; /* matches with sid: must be of the form "DOMAIN\account" */
-
-} LOCAL_GRP_MEMBER;
-
-/* enumerate these to get list of local groups */
-
-/* local group info */
-typedef struct local_grp_info
-{
- fstring name;
- fstring comment;
-
-} LOCAL_GRP;
-
-/*** enumerate these to get list of domain groups ***/
-
-/* domain group member info */
-typedef struct domain_grp_info
-{
- fstring name;
- fstring comment;
- uint32 rid; /* group rid */
- uint8 attr; /* attributes forced to be set to 0x7: SE_GROUP_xxx */
-
-} DOMAIN_GRP;
-
-/*** query a domain group, get a list of these: shows who is in that group ***/
-
-/* domain group info */
-typedef struct domain_grp_member_info
-{
- fstring name;
- uint8 attr; /* attributes forced to be set to 0x7: SE_GROUP_xxx */
-
-} DOMAIN_GRP_MEMBER;
-
/* 32 bit time (sec) since 01jan1970 - cifs6.txt, section 3.5, page 30 */
typedef struct time_info
{