WatchDog implementation; moved Bahke's server process code into a generalized mod loader implementation to allow loaded mods to hook into the server process

This commit is contained in:
Robert MacGregor 2015-06-26 23:24:24 -04:00
parent 831d49cc20
commit a7c9fc2f6e
21 changed files with 466 additions and 467 deletions

View file

@ -0,0 +1,8 @@
//
#include <Windows.h>
#include <string>
#include <unordered_set>
typedef void (*ServerProcessPointer)(unsigned int);
void serverProcessReplacement(unsigned int timeDelta);