Since the function RequestAuthLogin exported from dll with __thiscall the more correct code will be
typedef int(__thiscall* RequestAuthLoginFn)(UNetworkHandler*, const wchar_t*, const wchar_t*, int);
requestAuthLoginFn(*unetwork, login.c_str(), password.c_str(), 0);
The __fastcall calling...