r18789: Replace the winreg server code with the libndr parsing code.
[ira/wip.git] / source3 / rpc_server / srv_initshutdown_nt.c
1 /* 
2  *  Unix SMB/CIFS implementation.
3  *  RPC Pipe client / server routines
4  *  Copyright (C) Andrew Tridgell               1992-1997.
5  *  Copyright (C) Gerald Carter                 2006.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *  
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *  
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 /* Implementation of registry functions. */
23
24 #include "includes.h"
25 #include "regfio.h"
26
27 #undef DBGC_CLASS
28 #define DBGC_CLASS DBGC_RPC_SRV
29
30
31 /*******************************************************************
32  ********************************************************************/
33 WERROR _initshutdown_Init(pipes_struct *p, uint16_t *hostname, struct initshutdown_String *message, uint32_t timeout, uint8_t force_apps, uint8_t reboot)
34 {
35         uint32_t reason = 0;
36
37         /* thunk down to _winreg_InitiateSystemShutdownEx() 
38            (just returns a status) */
39         
40         return _winreg_InitiateSystemShutdownEx( p, hostname, message, timeout, 
41                 force_apps, reboot, reason );
42 }
43
44 /*******************************************************************
45  ********************************************************************/
46
47 WERROR _initshutdown_InitEx(pipes_struct *p, uint16_t *hostname, struct initshutdown_String *message, uint32_t timeout, uint8_t force_apps, uint8_t reboot, uint32_t reason)
48 {
49         return _winreg_InitiateSystemShutdownEx( p, hostname, message, timeout, 
50                 force_apps, reboot, reason );
51 }
52
53
54
55
56 /*******************************************************************
57  reg_abort_shutdwon
58  ********************************************************************/
59
60 WERROR _initshutdown_Abort(pipes_struct *p, uint16_t *server)
61 {
62         return _winreg_AbortSystemShutdown( p, server );
63 }