mirror of
https://github.com/reactos/reactos.git
synced 2026-05-24 00:00:41 +08:00
- Implement SvchostPushServiceGlobals() to make svchost happy. - Add the Browser service to the netsvcs group. CORE-18262
36 lines
692 B
C
36 lines
692 B
C
/*
|
|
* PROJECT: ReactOS Browser Service
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Browser service RPC server
|
|
* COPYRIGHT: Eric Kohl 2020 <eric.kohl@reactos.org>
|
|
*/
|
|
|
|
#ifndef _BROWSER_PCH_
|
|
#define _BROWSER_PCH_
|
|
|
|
#define WIN32_NO_STATUS
|
|
#define _INC_WINDOWS
|
|
#define COM_NO_WINDOWS_H
|
|
#include <limits.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winreg.h>
|
|
#include <winsvc.h>
|
|
#include <svc.h>
|
|
|
|
#include <browser_s.h>
|
|
|
|
#include <wine/debug.h>
|
|
|
|
extern HINSTANCE hDllInstance;
|
|
extern PSVCHOST_GLOBAL_DATA lpServiceGlobals;
|
|
|
|
DWORD
|
|
WINAPI
|
|
RpcThreadRoutine(
|
|
LPVOID lpParameter);
|
|
|
|
#endif /* _BROWSER_PCH_ */
|