eqemu-server/common/platform.h
2013-10-18 21:23:45 -07:00

22 lines
404 B
C

#ifndef EQEMU_PLATFORM_H
#define EQEMU_PLATFORM_H
enum EQEmuExePlatform
{
ExePlatformNone = 0,
ExePlatformZone,
ExePlatformWorld,
ExePlatformLogin,
ExePlatformQueryServ,
ExePlatformUCS,
ExePlatformLaunch,
ExePlatformSharedMemory,
ExePlatformClientImport,
ExePlatformClientExport
};
void RegisterExecutablePlatform(EQEmuExePlatform p);
const EQEmuExePlatform& GetExecutablePlatform();
#endif