Author: tpot
Date: 2005-01-26 04:34:16 +0000 (Wed, 26 Jan 2005)
New Revision: 5005

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=5005

Log:
Add missing size specifiers to various bitmaps.

Modified:
   branches/SAMBA_4_0/source/librpc/idl/dssetup.idl
   branches/SAMBA_4_0/source/librpc/idl/netlogon.idl
   branches/SAMBA_4_0/source/librpc/idl/samr.idl
   branches/SAMBA_4_0/source/librpc/idl/svcctl.idl


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/idl/dssetup.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/dssetup.idl    2005-01-26 03:19:42 UTC 
(rev 5004)
+++ branches/SAMBA_4_0/source/librpc/idl/dssetup.idl    2005-01-26 04:34:16 UTC 
(rev 5005)
@@ -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,

Modified: branches/SAMBA_4_0/source/librpc/idl/netlogon.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/netlogon.idl   2005-01-26 03:19:42 UTC 
(rev 5004)
+++ branches/SAMBA_4_0/source/librpc/idl/netlogon.idl   2005-01-26 04:34:16 UTC 
(rev 5005)
@@ -1096,7 +1096,7 @@
        /****************/
        /* 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 @@
                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,

Modified: branches/SAMBA_4_0/source/librpc/idl/samr.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/samr.idl       2005-01-26 03:19:42 UTC 
(rev 5004)
+++ branches/SAMBA_4_0/source/librpc/idl/samr.idl       2005-01-26 04:34:16 UTC 
(rev 5005)
@@ -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,

Modified: branches/SAMBA_4_0/source/librpc/idl/svcctl.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/svcctl.idl     2005-01-26 03:19:42 UTC 
(rev 5004)
+++ branches/SAMBA_4_0/source/librpc/idl/svcctl.idl     2005-01-26 04:34:16 UTC 
(rev 5005)
@@ -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,

Reply via email to