1
0
mirror of synced 2024-11-14 23:07:36 +01:00

APM3 Improve ALL.NEt

APM3 Improve ALL.NEt
This commit is contained in:
Nico Giansanti 2021-07-16 00:24:36 +03:00
parent d593699ae7
commit 6c5ea69e57
3 changed files with 8 additions and 6 deletions

View File

@ -93,7 +93,7 @@ bool Aime_isDBAlive()
#ifdef _LOGAPM3AIME
info(true, "Aime_isDBAlive");
#endif
return false;
return true;
}
bool Aime_isMobile()
@ -141,6 +141,6 @@ bool Aime_start()
#ifdef _LOGAPM3AIME
info(true, "Aime_start");
#endif
return false;
return true;
}
#endif

View File

@ -46,12 +46,14 @@ wchar_t* AllnetAuth_getAbaasLinkServerName()
return LinkServerName;
}
int AllnetAuth_getCountryCode()
char countryCode[4] = "JPN";
char *AllnetAuth_getCountryCode()
{
#ifdef _LOGAPM3AUTH
info(true, "AllnetAuth_getCountryCode");
#endif
return AllnetAuth_getCountryCodeReturnValue;
return countryCode;
}
unsigned int AllnetAuth_getLocationId()
@ -123,6 +125,6 @@ bool AllnetAuth_isGood()
#ifdef _LOGAPM3AUTH
info(true, "AllnetAuth_isGood");
#endif
return false;
return true;
}
#endif

View File

@ -33,7 +33,7 @@ int AllnetAuth_getLocationNicknamePartCount();
wchar_t* __fastcall AllnetAuth_getLocationNickname(int index);
wchar_t* AllnetAuth_getLocationName();
unsigned int AllnetAuth_getLocationId();
int AllnetAuth_getCountryCode();
char *AllnetAuth_getCountryCode();
wchar_t* AllnetAuth_getAbaasLinkServerName();
wchar_t* AllnetAuth_getAbaasGsServerName();
__int64 __fastcall AllnetAccounting_endPlay(int a1, int a2, int a3);