mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 05:21:29 +00:00
20 lines
352 B
C
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
|