2015-02-22 15:27:35 +00:00
|
|
|
#ifndef _WKSSVC_PCH_
|
|
|
|
#define _WKSSVC_PCH_
|
|
|
|
|
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
2019-12-08 18:18:16 +00:00
|
|
|
#include <winerror.h>
|
2015-02-22 15:27:35 +00:00
|
|
|
#include <winreg.h>
|
|
|
|
#include <winsvc.h>
|
2019-12-08 18:18:16 +00:00
|
|
|
#include <lmcons.h>
|
|
|
|
#include <lmerr.h>
|
|
|
|
#include <lmjoin.h>
|
2018-05-01 14:37:48 +00:00
|
|
|
#include <lmserver.h>
|
2019-12-08 18:18:16 +00:00
|
|
|
#include <ntsecapi.h>
|
|
|
|
//#include <ntstatus.h>
|
|
|
|
#include <ndk/rtlfuncs.h>
|
2015-02-22 15:27:35 +00:00
|
|
|
|
|
|
|
#include <wkssvc_s.h>
|
|
|
|
|
|
|
|
#include <wine/debug.h>
|
|
|
|
|
2021-02-27 18:07:47 +00:00
|
|
|
extern OSVERSIONINFOW VersionInfo;
|
|
|
|
extern HANDLE LsaHandle;
|
|
|
|
extern ULONG LsaAuthenticationPackage;
|
|
|
|
|
2019-12-08 18:18:16 +00:00
|
|
|
/* domain.c */
|
|
|
|
|
|
|
|
NET_API_STATUS
|
|
|
|
NetpJoinWorkgroup(
|
|
|
|
_In_ LPCWSTR WorkgroupName);
|
|
|
|
|
2019-12-15 18:53:23 +00:00
|
|
|
NET_API_STATUS
|
|
|
|
NetpGetJoinInformation(
|
|
|
|
LPWSTR *NameBuffer,
|
|
|
|
PNETSETUP_JOIN_STATUS BufferType);
|
|
|
|
|
2019-12-08 18:18:16 +00:00
|
|
|
|
|
|
|
/* rpcserver.c */
|
|
|
|
|
2015-02-22 15:27:35 +00:00
|
|
|
DWORD
|
|
|
|
WINAPI
|
|
|
|
RpcThreadRoutine(
|
|
|
|
LPVOID lpParameter);
|
|
|
|
|
|
|
|
#endif /* _WKSSVC_PCH_ */
|