mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
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:
@@ -26,7 +26,7 @@ Client::~Client()
|
||||
|
||||
|
||||
//-------------------------------------------
|
||||
void Client::onConnect(const char *host, short port, short current, short max)
|
||||
void Client::onConnect(const char *host, int16_t port, int16_t current, int16_t max)
|
||||
//-------------------------------------------
|
||||
{
|
||||
printf("\nConnect to %s:%d (%d of %d)", host, port, current, max);
|
||||
@@ -34,7 +34,7 @@ void Client::onConnect(const char *host, short port, short current, short max)
|
||||
}
|
||||
|
||||
//-------------------------------------------
|
||||
void Client::onDisconnect(const char *host, short port, short current, short max)
|
||||
void Client::onDisconnect(const char *host, int16_t port, int16_t current, int16_t max)
|
||||
//-------------------------------------------
|
||||
{
|
||||
printf("\nDisconnect from %s:%d (%d of %d)", host, port, current, max);
|
||||
|
||||
Reference in New Issue
Block a user