Initial commit

This commit is contained in:
2026-07-09 11:27:59 +08:00
commit 3f1edda843
126 changed files with 34446 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#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