diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-02-19 11:57:32 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-02-19 15:59:23 +0100 |
commit | 4473a07fb3118b4e5197f05c5b930c3eb828a94a (patch) | |
tree | 891908adc3bf52066791c912e86ced03cc5a934a /source4/librpc/idl | |
parent | fc840f3810124d1b83afea172d3940dd54ab42f7 (diff) | |
download | samba-4473a07fb3118b4e5197f05c5b930c3eb828a94a.tar.gz samba-4473a07fb3118b4e5197f05c5b930c3eb828a94a.tar.bz2 samba-4473a07fb3118b4e5197f05c5b930c3eb828a94a.zip |
winreg.idl: get rid of initshutdown_String and use lsa_StringLarge
metze
(This used to be commit 1ccea2a260de83b2e3137f762716ae67070c7024)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/winreg.idl | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/source4/librpc/idl/winreg.idl b/source4/librpc/idl/winreg.idl index b489e86c38..5e5d5542b6 100644 --- a/source4/librpc/idl/winreg.idl +++ b/source4/librpc/idl/winreg.idl @@ -2,7 +2,7 @@ winreg interface definition */ -import "lsa.idl", "initshutdown.idl", "security.idl"; +import "lsa.idl", "security.idl"; [ uuid("338cd001-2244-31f1-aaaa-900038001003"), @@ -302,7 +302,11 @@ import "lsa.idl", "initshutdown.idl", "security.idl"; /* Function: 0x18 */ WERROR winreg_InitiateSystemShutdown( [in,unique] uint16 *hostname, - [in,unique] initshutdown_String *message, + /* + * Note: lsa_String and winreg_String both result + * in WERR_INVALID_PARAM + */ + [in,unique] lsa_StringLarge *message, [in] uint32 timeout, [in] uint8 force_apps, [in] uint8 reboot @@ -358,7 +362,11 @@ import "lsa.idl", "initshutdown.idl", "security.idl"; /* Function: 0x1e */ WERROR winreg_InitiateSystemShutdownEx( [in,unique] uint16 *hostname, - [in,unique] initshutdown_String *message, + /* + * Note: lsa_String and winreg_String both result + * in WERR_INVALID_PARAM + */ + [in,unique] lsa_StringLarge *message, [in] uint32 timeout, [in] uint8 force_apps, [in] uint8 reboot, |