mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[reactos] Add missing prototypes for svchost callbacks
Addendum to 43fa9548d3
This commit is contained in:
parent
69bd857e39
commit
24a727a23b
1 changed files with 14 additions and 0 deletions
|
@ -10,6 +10,20 @@
|
|||
#ifndef __SVC_H
|
||||
#define __SVC_H
|
||||
|
||||
#ifndef __RPC_H__
|
||||
#include <rpc.h>
|
||||
#endif
|
||||
|
||||
|
||||
typedef RPC_STATUS
|
||||
(CALLBACK *LPSTART_RPC_SERVER) (
|
||||
_In_ RPC_WSTR PipeName,
|
||||
_In_ RPC_IF_HANDLE IfSpec);
|
||||
|
||||
typedef RPC_STATUS
|
||||
(CALLBACK *LPSTOP_RPC_SERVER) (
|
||||
_In_ RPC_IF_HANDLE IfSpec);
|
||||
|
||||
//
|
||||
// This is the callback that a hosted service can register for stop notification
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue