mirror of
https://github.com/samba-team/samba.git
synced 2025-03-01 04:58:35 +03:00
Todd Sabin pointed out that a couple of the values I marked as hyper_t
are in fact 4 byte aligned. Create a ULONG8 type in samr for those. This type should probably be made global later. (This used to be commit e7dd116138ed21922c8578bebe0452f03221b3b7)
This commit is contained in:
parent
15776970a5
commit
4fd867a240
@ -12,6 +12,13 @@
|
||||
pointer_default(unique)
|
||||
] interface samr
|
||||
{
|
||||
/* a 4 byte aligned 64-bit integer */
|
||||
typedef struct {
|
||||
uint32 low;
|
||||
uint32 high;
|
||||
} ULONG8;
|
||||
|
||||
|
||||
/******************/
|
||||
/* Function: 0x00 */
|
||||
NTSTATUS samr_Connect (
|
||||
@ -108,7 +115,7 @@
|
||||
} samr_DomInfo1;
|
||||
|
||||
typedef struct {
|
||||
HYPER_T force_logoff_time;
|
||||
ULONG8 force_logoff_time;
|
||||
samr_Name unknown1;
|
||||
samr_Name domain; /* domain name */
|
||||
samr_Name primary; /* PDC name if this is a BDC */
|
||||
@ -122,7 +129,7 @@
|
||||
} samr_DomInfo2;
|
||||
|
||||
typedef struct {
|
||||
HYPER_T force_logoff_time;
|
||||
ULONG8 force_logoff_time;
|
||||
} samr_DomInfo3;
|
||||
|
||||
typedef struct {
|
||||
@ -151,7 +158,7 @@
|
||||
} samr_DomInfo9;
|
||||
|
||||
typedef struct {
|
||||
HYPER_T force_logoff_time;
|
||||
ULONG8 force_logoff_time;
|
||||
samr_Name unknown1;
|
||||
samr_Name domain;
|
||||
samr_Name primary;
|
||||
|
Loading…
x
Reference in New Issue
Block a user