Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenservices.h
Go to the documentation of this file.
00001 /* 00002 * COPYRIGHT: See COPYING in the top level directory 00003 * PROJECT: ReactOS kernel 00004 * FILE: include/services/services.h 00005 * PURPOSE: Private interface between SERVICES.EXE and ADVAPI32.DLL 00006 * PROGRAMMER: Eric Kohl 00007 */ 00008 00009 #ifndef __SERVICES_SERVICES_H__ 00010 #define __SERVICES_SERVICES_H__ 00011 00012 #define SERVICE_CONTROL_START 0 00013 00014 typedef struct _SCM_CONTROL_PACKET 00015 { 00016 DWORD dwSize; 00017 DWORD dwControl; 00018 SERVICE_STATUS_HANDLE hServiceStatus; 00019 DWORD dwServiceNameOffset; 00020 DWORD dwArgumentsCount; 00021 DWORD dwArgumentsOffset; 00022 } SCM_CONTROL_PACKET, *PSCM_CONTROL_PACKET; 00023 00024 typedef struct _SCM_REPLY_PACKET 00025 { 00026 DWORD dwError; 00027 } SCM_REPLY_PACKET, *PSCM_REPLY_PACKET; 00028 00029 #endif /* __SERVICES_SERVICES_H__ */ 00030 00031 /* EOF */ Generated on Fri May 25 2012 04:17:02 for ReactOS by
1.7.6.1
|