Merge 13159:13510 from trunk
[reactos.git] / reactos / include / services / services.h
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: include/services/services.h
6 * PURPOSE: Private interface between SERVICES.EXE and ADVAPI32.DLL
7 * PROGRAMMER: Eric Kohl
8 */
9
10 #ifndef __SERVICES_SERVICES_H__
11 #define __SERVICES_SERVICES_H__
12
13 #define SCM_START_COMMAND 1
14
15 typedef struct _SCM_START_PACKET
16 {
17 ULONG Command;
18 ULONG Size;
19 WCHAR Arguments[1];
20 } SCM_START_PACKET, *PSCM_START_PACKET;
21
22 #endif /* __SERVICES_SERVICES_H__ */
23
24 /* EOF */