mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
bab8dc90be
- Move service skeleton into templates directory, it's there for that kind of stuff. svn path=/trunk/; revision=33080
22 lines
357 B
C
22 lines
357 B
C
#include <windows.h>
|
|
#include <tchar.h>
|
|
|
|
#define DEBUG 1
|
|
|
|
#define LOG_FILE 1
|
|
#define LOG_EVENTLOG 2
|
|
#define LOG_ERROR 4
|
|
#define LOG_ALL (LOG_FILE | LOG_EVENTLOG | LOG_ERROR)
|
|
|
|
extern volatile BOOL bShutDown;
|
|
extern volatile BOOL bPause;
|
|
|
|
VOID
|
|
LogEvent(LPCTSTR lpMsg,
|
|
DWORD errNum,
|
|
DWORD exitCode,
|
|
UINT flags);
|
|
|
|
VOID
|
|
InitLogging();
|