mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 14:51:00 +00:00
[SERVICES]
- Copy service status only once after a control packet has been sent to a service. - Send a reply packet to the service manager after a control packet has been sent to a service. svn path=/trunk/; revision=45716
This commit is contained in:
parent
38e5930305
commit
398f34f8cb
1 changed files with 5 additions and 0 deletions
|
@ -19,6 +19,11 @@ typedef struct _SCM_CONTROL_PACKET
|
||||||
WCHAR szArguments[1];
|
WCHAR szArguments[1];
|
||||||
} SCM_CONTROL_PACKET, *PSCM_CONTROL_PACKET;
|
} SCM_CONTROL_PACKET, *PSCM_CONTROL_PACKET;
|
||||||
|
|
||||||
|
typedef struct _SCM_REPLY_PACKET
|
||||||
|
{
|
||||||
|
DWORD dwError;
|
||||||
|
} SCM_REPLY_PACKET, *PSCM_REPLY_PACKET;
|
||||||
|
|
||||||
#endif /* __SERVICES_SERVICES_H__ */
|
#endif /* __SERVICES_SERVICES_H__ */
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Reference in a new issue