diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-15 16:13:02 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-15 16:13:02 +0200 |
commit | 881b36f4cff46320cc8a314dbcb57c3e964f06f2 (patch) | |
tree | 74d361b31b541a125f345c9f68bdc72bf9cd3bb1 /source3/librpc/idl/initshutdown.idl | |
parent | 0c840bd8d2f650e805bd7d03c2b3fe530b431a4f (diff) | |
download | samba-881b36f4cff46320cc8a314dbcb57c3e964f06f2.tar.gz samba-881b36f4cff46320cc8a314dbcb57c3e964f06f2.tar.bz2 samba-881b36f4cff46320cc8a314dbcb57c3e964f06f2.zip |
Share initshutdown.idl.
Diffstat (limited to 'source3/librpc/idl/initshutdown.idl')
-rw-r--r-- | source3/librpc/idl/initshutdown.idl | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/source3/librpc/idl/initshutdown.idl b/source3/librpc/idl/initshutdown.idl deleted file mode 100644 index dfc52714c4..0000000000 --- a/source3/librpc/idl/initshutdown.idl +++ /dev/null @@ -1,48 +0,0 @@ -#include "idl_types.h" - -/* - initshutdown interface definition -*/ - -import "lsa.idl"; - -[ - uuid("894de0c0-0d55-11d3-a322-00c04fa321a1"), - version(1.0), - endpoint("ncacn_np:[\\pipe\\InitShutdown]"), - pointer_default(unique), - helpstring("Init shutdown service") -] interface initshutdown -{ - typedef struct { - [value(strlen_m_term(name))] uint32 name_size; - [flag(STR_LEN4|STR_NOTERM)] string name; - } initshutdown_String_sub; - - typedef [public] struct { - [value(strlen_m(name->name)*2)] uint16 name_len; - [value(strlen_m_term(name->name)*2)] uint16 name_size; - initshutdown_String_sub *name; - } initshutdown_String; - - WERROR initshutdown_Init( - [in,unique] uint16 *hostname, - [in,unique] initshutdown_String *message, - [in] uint32 timeout, - [in] uint8 force_apps, - [in] uint8 do_reboot - ); - - WERROR initshutdown_Abort( - [in,unique] uint16 *server - ); - - WERROR initshutdown_InitEx( - [in,unique] uint16 *hostname, - [in,unique] initshutdown_String *message, - [in] uint32 timeout, - [in] uint8 force_apps, - [in] uint8 do_reboot, - [in] uint32 reason - ); -} |