diff options
Diffstat (limited to 'source4/include/smb_interfaces.h')
-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 |