mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 06:09:58 +00:00
0a5ccac599
- 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.
27 lines
399 B
C
27 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_ */
|