From 8830a20bce4bde93aef2752c1e87aca428169d0a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 11 Nov 2003 07:57:08 +0000 Subject: added 9 more info levels to lsa_QueryInfoPolicy (This used to be commit b2ced24fc0be4944dd96f160e435f4c6773debcd) --- source4/include/smb_interfaces.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'source4/include') 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 -- cgit