1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r5005: Add missing size specifiers to various bitmaps.

(This used to be commit 19a907cb58)
This commit is contained in:
Tim Potter 2005-01-26 04:34:16 +00:00 committed by Gerald (Jerry) Carter
parent 0b673687e5
commit 9eea1eb94f
4 changed files with 6 additions and 6 deletions

View File

@ -24,7 +24,7 @@
DS_ROLE_PRIMARY_DC = 5
} dssetup_DsRole;
typedef bitmap {
typedef [bitmap32bit] bitmap {
DS_ROLE_PRIMARY_DS_RUNNING = 0x00000001,
DS_ROLE_PRIMARY_DS_MIXED_MODE = 0x00000002,
DS_ROLE_UPGRADE_IN_PROGRESS = 0x00000004,

View File

@ -1096,7 +1096,7 @@ interface netlogon
/****************/
/* Function 0x28 */
typedef bitmap {
typedef [bitmap32bit] bitmap {
NETR_TRUST_FLAG_IN_FOREST = 0x00000001,
NETR_TRUST_FLAG_OUTBOUND = 0x00000002,
NETR_TRUST_FLAG_TREEROOT = 0x00000004,
@ -1112,7 +1112,7 @@ interface netlogon
NETR_TRUST_TYPE_DCE = 4
} netr_TrustType;
typedef bitmap {
typedef [bitmap32bit] bitmap {
NETR_TRUST_ATTRIBUTE_NON_TRANSITIVE = 0x00000001,
NETR_TRUST_ATTRIBUTE_UPLEVEL_ONLY = 0x00000002,
NETR_TRUST_ATTRIBUTE_QUARANTINED_DOMAIN = 0x00000004,

View File

@ -16,7 +16,7 @@
] interface samr
{
/* account control (acct_flags) bits */
typedef [public] bitmap {
typedef [public,bitmap32bit] bitmap {
ACB_DISABLED = 0x00000001, /* 1 = User account disabled */
ACB_HOMDIRREQ = 0x00000002, /* 1 = Home directory required */
ACB_PWNOTREQ = 0x00000004, /* 1 = User password not required */
@ -664,7 +664,7 @@
} samr_UserInfo20;
/* this defines the bits used for fields_present in info21 */
typedef bitmap {
typedef [bitmap32bit] bitmap {
SAMR_FIELD_NAME = 0x00000002,
SAMR_FIELD_DESCRIPTION = 0x00000010,
SAMR_FIELD_COMMENT = 0x00000020,

View File

@ -46,7 +46,7 @@
const int SERVICE_STATE_INACTIVE = 0x02;
const int SERVICE_STATE_ALL = 0x00;
typedef [public] bitmap {
typedef [public,bitmap32bit] bitmap {
SV_TYPE_WORKSTATION = 0x00000001,
SV_TYPE_SERVER = 0x00000002,
SV_TYPE_SQLSERVER = 0x00000004,