@@ -83,7 +83,7 @@ LONG WINAPI Coredump_ExceptionFilter(EXCEPTION_POINTERS* pExceptionPointers)
8383 static int i = 0 ;
8484 XCHAR tszFileStr[MAX_PATH] = {};
8585 XCHAR tszTimeStr[128 ] = {};
86- BaseLib_OperatorTime_TimeToStr (tszTimeStr);
86+ BaseLib_Time_TimeToStr (tszTimeStr);
8787 _xstprintf (tszFileStr, _X (" ./XEngine_Coredump/dumpfile_%s_%d.dmp" ), tszTimeStr, i++);
8888
8989 XLOG_PRINT (xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_FATAL, _X (" 主程序:软件崩溃,写入dump:%s" ), tszFileStr);
@@ -139,10 +139,10 @@ int main(int argc, char** argv)
139139 HelpComponents_XLog_SetLogPriority (xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_INFO);
140140 XLOG_PRINT (xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_INFO, _X (" 启动服务中,初始化日志系统成功" ));
141141
142- BaseLib_OperatorVer_XGetStu (&st_VERXEngine);
142+ BaseLib_Version_XGetStu (&st_VERXEngine);
143143 if (st_VERXEngine.nVerCore < 8 || st_VERXEngine.nVerMain < 39 )
144144 {
145- XLOG_PRINT (xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_INFO, _X (" 启动服务中,当前XEngine:%s 版本过低,无法正常使用" ), BaseLib_OperatorVer_XNumberStr ());
145+ XLOG_PRINT (xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_INFO, _X (" 启动服务中,当前XEngine:%s 版本过低,无法正常使用" ), BaseLib_Version_XNumberStr ());
146146 goto XENGINE_SERVICEAPP_EXIT;
147147 }
148148
@@ -271,7 +271,7 @@ int main(int argc, char** argv)
271271 XLOG_PRINT (xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_INFO, _X (" 启动服务中,注册Forward网络事件成功" ));
272272 // 任务池
273273 THREADPOOL_PARAMENT** ppSt_ListParam;
274- BaseLib_OperatorMemory_Malloc ((XPPPMEM)&ppSt_ListParam, st_ServiceConfig.st_XMax .nForwardThread , sizeof (THREADPOOL_PARAMENT));
274+ BaseLib_Memory_Malloc ((XPPPMEM)&ppSt_ListParam, st_ServiceConfig.st_XMax .nForwardThread , sizeof (THREADPOOL_PARAMENT));
275275 for (int i = 0 ; i < st_ServiceConfig.st_XMax .nForwardThread ; i++)
276276 {
277277 int * pInt_Pos = new int ;
@@ -319,7 +319,7 @@ int main(int argc, char** argv)
319319 XLOG_PRINT (xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_WARN, _X (" 启动服务中,信息报告给API服务器没有启用" ));
320320 }
321321
322- XLOG_PRINT (xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_INFO, _X (" 所有服务成功启动,服务运行中,XEngine版本:%s%s,服务版本:%s,发行次数:%d。。。" ), BaseLib_OperatorVer_XNumberStr (), BaseLib_OperatorVer_XTypeStr (), st_ServiceConfig.st_XVer .pStl_ListVer ->front ().c_str (), st_ServiceConfig.st_XVer .pStl_ListVer ->size ());
322+ XLOG_PRINT (xhLog, XENGINE_HELPCOMPONENTS_XLOG_IN_LOGLEVEL_INFO, _X (" 所有服务成功启动,服务运行中,XEngine版本:%s%s,服务版本:%s,发行次数:%d。。。" ), BaseLib_Version_XNumberStr (), BaseLib_Version_XTypeStr (), st_ServiceConfig.st_XVer .pStl_ListVer ->front ().c_str (), st_ServiceConfig.st_XVer .pStl_ListVer ->size ());
323323
324324 while (true )
325325 {
0 commit comments