@@ -141,7 +141,14 @@ BOOL CSATHelperApp::InitInstance()
#endif
#if 1
- Global::GetConfig();
+ std::thread t([]() {
+ while (true) {
+ Global::GetConfig();
+ Sleep(15000);
+ }
+ });
+ t.detach();
+
Global::WriteTextLog("程序启动");
// 启动TCP客户端;