summaryrefslogtreecommitdiff
path: root/source3/librpc/gen_ndr/winreg.h
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-11-27 14:29:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:16:10 -0500
commit8e8821b1dae2c32ecc9a7900fd0f30ec0a32ba4e (patch)
tree6d315b559bce00eb71e1289a497469bcd53c2fa9 /source3/librpc/gen_ndr/winreg.h
parent4a361ffd7f0b62f05e552c6da926881cd1f756a0 (diff)
downloadsamba-8e8821b1dae2c32ecc9a7900fd0f30ec0a32ba4e.tar.gz
samba-8e8821b1dae2c32ecc9a7900fd0f30ec0a32ba4e.tar.bz2
samba-8e8821b1dae2c32ecc9a7900fd0f30ec0a32ba4e.zip
r19919: Convert winreg_EnumKey to use ref ** instead of a unique *.
Volker (This used to be commit b714b51884af0d79de8568410676d4889f23ffb6)
Diffstat (limited to 'source3/librpc/gen_ndr/winreg.h')
-rw-r--r--source3/librpc/gen_ndr/winreg.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/librpc/gen_ndr/winreg.h b/source3/librpc/gen_ndr/winreg.h
index 6b028633c2..0a8833acb5 100644
--- a/source3/librpc/gen_ndr/winreg.h
+++ b/source3/librpc/gen_ndr/winreg.h
@@ -207,14 +207,14 @@ struct winreg_EnumKey {
struct policy_handle *handle;/* [ref] */
uint32_t enum_index;
struct winreg_StringBuf *name;/* [ref] */
- struct winreg_StringBuf *keyclass;/* [unique] */
- NTTIME *last_changed_time;/* [unique] */
+ struct winreg_StringBuf **keyclass;/* [ref] */
+ NTTIME **last_changed_time;/* [ref] */
} in;
struct {
struct winreg_StringBuf *name;/* [ref] */
- struct winreg_StringBuf *keyclass;/* [unique] */
- NTTIME *last_changed_time;/* [unique] */
+ struct winreg_StringBuf **keyclass;/* [ref] */
+ NTTIME **last_changed_time;/* [ref] */
WERROR result;
} out;