Changeset 228 for branches/samba-3.2.x/source/librpc/idl
- Timestamp:
- May 26, 2009, 9:44:50 AM (16 years ago)
- Location:
- branches/samba-3.2.x/source/librpc/idl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/source/librpc/idl/ntsvcs.idl
r133 r228 238 238 239 239 typedef struct { 240 uint32 unknown1;241 uint16 unknown2[160];242 uint32 unknown3;240 uint32 profile_handle; 241 uint16 friendly_name[80]; 242 uint32 flags; 243 243 } PNP_HwProfInfo; 244 244 … … 246 246 [in] uint32 idx, 247 247 [in,out,ref] PNP_HwProfInfo *info, 248 [in] uint32 unknown1,249 [in] uint32 unknown2248 [in] uint32 size, 249 [in] uint32 flags 250 250 ); 251 251 -
branches/samba-3.2.x/source/librpc/idl/samr.idl
r136 r228 836 836 typedef struct { 837 837 samr_CryptPassword password; 838 uint8 p w_len;838 uint8 password_expired; 839 839 } samr_UserInfo24; 840 840 … … 850 850 typedef struct { 851 851 samr_CryptPasswordEx password; 852 uint8 p w_len;852 uint8 password_expired; 853 853 } samr_UserInfo26; 854 854 -
branches/samba-3.2.x/source/librpc/idl/security.idl
r133 r228 234 234 } sec_privilege; 235 235 236 typedef [ bitmap8bit] bitmap {236 typedef [public,bitmap8bit] bitmap { 237 237 SEC_ACE_FLAG_OBJECT_INHERIT = 0x01, 238 238 SEC_ACE_FLAG_CONTAINER_INHERIT = 0x02, … … 245 245 } security_ace_flags; 246 246 247 typedef [ enum8bit] enum {247 typedef [public,enum8bit] enum { 248 248 SEC_ACE_TYPE_ACCESS_ALLOWED = 0, 249 249 SEC_ACE_TYPE_ACCESS_DENIED = 1, … … 282 282 } security_ace_object; 283 283 284 typedef [ nodiscriminant] union {284 typedef [public,nodiscriminant] union { 285 285 [case(SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT)] security_ace_object object; 286 286 [case(SEC_ACE_TYPE_ACCESS_DENIED_OBJECT)] security_ace_object object; … … 290 290 } security_ace_object_ctr; 291 291 292 typedef [public, gensize,nosize] struct {292 typedef [public,nopull,gensize,nosize] struct { 293 293 security_ace_type type; /* SEC_ACE_TYPE_* */ 294 294 security_ace_flags flags; /* SEC_ACE_FLAG_* */
Note:
See TracChangeset
for help on using the changeset viewer.