DragonNest/Extern/NexonMID2005/MachineIdInfo.h
2024-12-19 09:48:26 +08:00

17 lines
No EOL
312 B
C++

#pragma once
class CSystemInfo
{
public:
CSystemInfo ();
virtual ~CSystemInfo ();
void Init();
const unsigned char* GetSupportId();
const unsigned char* GetMachineId();
DWORD GetGameRoomClient();
protected:
unsigned char SupportId[16];
unsigned char MachineId[16];
};