reactos/rosapps/templates/skel_service/myservice.h
Aleksey Bragin bab8dc90be - directory.rbuild in rosapps should be alphabetically sorted, so move drivers to its respected place.
- Move service skeleton into templates directory, it's there for that kind of stuff.

svn path=/trunk/; revision=33080
2008-04-20 20:54:06 +00:00

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();