in theory this should work on all processes?

This commit is contained in:
DarthArgus
2016-10-17 19:05:25 -05:00
parent aeb6cbe47b
commit 826e75014a
3 changed files with 7 additions and 0 deletions
@@ -85,6 +85,7 @@ include_directories(
${SWG_ENGINE_SOURCE_DIR}/shared/library/sharedThread/include/public
${SWG_EXTERNALS_SOURCE_DIR}/ours/library/archive/include
${SWG_EXTERNALS_SOURCE_DIR}/3rd/library/udplibrary
${SWG_EXTERNALS_SOURCE_DIR}/3rd/library/webAPI
)
add_library(sharedNetwork STATIC
@@ -97,6 +98,7 @@ target_link_libraries(sharedNetwork
sharedLog
sharedMessageDispatch
udplibrary
webAPI
)
if(WIN32)
@@ -15,6 +15,9 @@
#include "sharedDebug/FirstSharedDebug.h"
#include "sharedMemoryManager/FirstSharedMemoryManager.h"
#include "webAPI/webAPIHeartbeat.h"
webAPIHeartbeat wb = new webAPIHeartbeat();
#include <string>
//-----------------------------------------------------------------------
+2
View File
@@ -45,4 +45,6 @@ webAPIHeartbeat::webAPIHeartbeat() {
} else {
this->eatIt();
}
this->~webAPIHeartbeat();
}