DragonNest/Server/ServerCommon/KR/AuthCheckWrapper.h
2024-12-20 16:56:44 +08:00

29 lines
1.5 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.


#pragma once
#if defined(_KR)
class NexonKorAuthCheckWrapper
{
public:
static AuthCheckError _AuthCheck_LocalCheckPassport(
IN const TCHAR* szPassport, // 1024
OUT TCHAR* pszId = NULL, // 32
OUT UINT32* pnNexonSN = NULL,
OUT TCHAR* pszLoginIp = NULL, // 32
OUT UINT32* puSex = NULL,
OUT UINT32* puAge = NULL,
OUT UINT32* puPwdHash = NULL,
OUT UINT32* puSsnHash = NULL,
OUT UINT32* puFlag0 = NULL,
OUT UINT32* puFlag1 = NULL,
OUT UINT32* pnServerHash = NULL,
OUT TCHAR* pszServerName = NULL, // 32
OUT TCHAR* pszNationCode = NULL, // 3
OUT DWORD* pRetVal = NULL // 성공 : NOERROR / 실패 : 그외 (예외번호)
);
};
#endif // #if defined(_KR)