diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-11 07:57:08 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-11 07:57:08 +0000 |
commit | 8830a20bce4bde93aef2752c1e87aca428169d0a (patch) | |
tree | 29e4c213e3a64832e832d8c5290e0f6b18aba8ad /source4/include | |
parent | 5475c9f9785e11638bc5ec47aa84a169b0284bbb (diff) | |
download | samba-8830a20bce4bde93aef2752c1e87aca428169d0a.tar.gz samba-8830a20bce4bde93aef2752c1e87aca428169d0a.tar.bz2 samba-8830a20bce4bde93aef2752c1e87aca428169d0a.zip |
added 9 more info levels to lsa_QueryInfoPolicy
(This used to be commit b2ced24fc0be4944dd96f160e435f4c6773debcd)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/smb_interfaces.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source4/include/smb_interfaces.h b/source4/include/smb_interfaces.h index fd393c9db3..52df49f01b 100644 --- a/source4/include/smb_interfaces.h +++ b/source4/include/smb_interfaces.h @@ -23,7 +23,7 @@ typedef SMB_BIG_UINT large_t; /* Globally Unique ID */ #define GUID_SIZE 16 -typedef struct guid_info +typedef struct GUID { uint8 info[GUID_SIZE]; } GUID; @@ -35,6 +35,14 @@ typedef struct nttime_info uint32 high; } NTTIME; +/* 8 byte aligned 'hyper' type from MS IDL */ +typedef struct +{ + uint32 low; + uint32 high; +} HYPER_T; + + /* this structure is just a wrapper for a string, the only reason we bother with this is that it allows us to check the length provided |