this is a more "clean" conversion to 64 bit than the type-fixups branch, which does borrow some elements from it but has far less find and replace...it is about 98-99% done, notes to follow later

This commit is contained in:
DarthArgus
2017-01-24 03:35:59 +00:00
parent 42b949c3dc
commit 36686348e9
458 changed files with 2282 additions and 2367 deletions
@@ -13,7 +13,7 @@ namespace CTService
class CTServiceAPICore;
typedef unsigned short CTUnicodeChar;
typedef uint16_t CTUnicodeChar;
//--------------------------------------
class CTServiceAPI
@@ -23,8 +23,8 @@ public:
CTServiceAPI(const char *hostName, const char *game); // hostName: "addr1:port1 addr2:port2"
virtual ~CTServiceAPI();
virtual void onConnect(const char *host, const short port, const short current, const short max) = 0;
virtual void onDisconnect(const char *host, const short port, const short current, const short max) = 0;
virtual void onConnect(const char *host, const int16_t port, const int16_t current, const int16_t max) = 0;
virtual void onDisconnect(const char *host, const int16_t port, const int16_t current, const int16_t max) = 0;
void process();
// ----- Requests generated by API -----