17 lines
307 B
C
17 lines
307 B
C
#ifndef ServiceInitH
|
|
#define ServiceInitH
|
|
|
|
#ifdef _SERVICEINIT_CPP
|
|
HWND g_hWnd = NULL;
|
|
HANDLE g_hEvServiceThread = NULL;
|
|
#else
|
|
extern HWND g_hWnd;
|
|
extern HANDLE g_hEvServiceThread;
|
|
#endif
|
|
|
|
bool ServiceInit();
|
|
void ServiceDeInit();
|
|
|
|
DWORD WINAPI DBMain(void* pParam);
|
|
|
|
#endif //_SERVICEINIT_H
|