reactos/base/services/srvsvc/precomp.h
Eric Kohl 0a5ccac599 [SRVSVC] Set and retrieve service bits and rename unknown functions
- Service bits are set by NetrServerSetServiceBits and can be retrieved by NetrServerGetInfo.
- The real name of function 42 is NetrServerSetServiceBitsEx and the real name of function 47 is NetrDfsSetServerInfo.
2018-08-05 15:05:19 +02:00

28 lines
399 B
C

#ifndef _SRVSVC_PCH_
#define _SRVSVC_PCH_
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winreg.h>
#include <winsvc.h>
#include <lmserver.h>
#include <srvsvc_s.h>
#include <wine/debug.h>
extern DWORD dwServiceBits;
DWORD
WINAPI
RpcThreadRoutine(
LPVOID lpParameter);
#endif /* _SRVSVC_PCH_ */