|
@@ -136,13 +136,14 @@ int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
|
|
|
|
|
|
// 2.不存在,安装服务;
|
|
// 2.不存在,安装服务;
|
|
WindowsService::InitSvcVar();
|
|
WindowsService::InitSvcVar();
|
|
|
|
+#if 0 // 若服务不存在,无须执行主程序;
|
|
WindowsService::SetCallBack(WorkStart, WorkEndof);
|
|
WindowsService::SetCallBack(WorkStart, WorkEndof);
|
|
SERVICE_TABLE_ENTRY st[] =
|
|
SERVICE_TABLE_ENTRY st[] =
|
|
{
|
|
{
|
|
{ WindowsService::g_szSvcName, (LPSERVICE_MAIN_FUNCTION)WindowsService::ServiceMain },
|
|
{ WindowsService::g_szSvcName, (LPSERVICE_MAIN_FUNCTION)WindowsService::ServiceMain },
|
|
{ NULL, NULL }
|
|
{ NULL, NULL }
|
|
};
|
|
};
|
|
-
|
|
|
|
|
|
+#endif
|
|
WindowsService::SvcInstall();
|
|
WindowsService::SvcInstall();
|
|
}
|
|
}
|
|
|
|
|