1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-04 05:18:06 +03:00

r2782: Reformat IDL for winreg_EnumValue()

(This used to be commit 9250f745ad)
This commit is contained in:
Tim Potter 2004-10-02 11:58:35 +00:00 committed by Gerald (Jerry) Carter
parent 710ad9613b
commit a1cee786f0

View File

@ -124,50 +124,28 @@
[in,out] winreg_Time *last_changed_time
);
typedef struct {
uint32 max_len;
uint32 offset;
uint32 len;
uint16 buffer[len];
} winreg_Uint16buf;
typedef struct {
uint32 max_len;
uint32 offset;
DATA_BLOB buffer;
} EnumValue;
typedef struct {
uint16 len;
uint16 max_len;
unistr *buf;
} winreg_EnumValueName;
typedef struct {
uint32 max_len;
uint32 offset;
uint32 len;
uint8 buffer[len];
} winreg_Uint8buf;
typedef struct {
uint32 max_len;
uint32 offset;
DATA_BLOB buffer;
} foo2;
typedef struct {
uint16 len;
uint16 max_len;
foo2 *buffer;
} foo1;
typedef struct {
uint16 len;
uint16 max_len;
EnumValue *buffer;
} EnumValueName;
/******************/
/* Function: 0x0a */
WERROR winreg_EnumValue(
[in,ref] policy_handle *handle,
[in] uint32 enum_index,
[in,out] foo1 foo,
/* [out,ref] winreg_EnumValueName *name, */
[in,out] EnumValueName name,
[in,out] uint32 *type,
[in,out] foo2 *foo2,
/* [in,out] winreg_Uint8buf *value, */
[in,out] uint32 *value1,
[in,out] uint32 *value2
[in,out] EnumValue *value,
[in,out] uint32 *value_len1,
[in,out] uint32 *value_len2
);
/******************/