eqemu-server/common/platform.h
2013-05-09 11:37:51 -04:00

20 lines
352 B
C

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