39 lines
856 B
C
39 lines
856 B
C
// Copyright (C) 2007-2025 EQ2EMulator
|
|
// Licensed under GPL v3
|
|
|
|
#include "LogTypes.h"
|
|
|
|
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
#define CURRENT_DATABASE_MINORVERSION 43
|
|
#define CURRENT_DATABASE_MAJORVERSION 730
|
|
#if defined(LOGIN)
|
|
#define EQ2EMU_MODULE "EQ2EMu LoginServer"
|
|
#elif defined(PATCHER)
|
|
#define EQ2EMU_MODULE "EQ2EMu PatchServer"
|
|
#elif defined(CHAT)
|
|
#define EQ2EMU_MODULE "EQ2EMu ChatServer"
|
|
#elif defined(ZONE)
|
|
#define EQ2EMU_MODULE "EQ2EMu ZoneServer"
|
|
#else
|
|
#define EQ2EMU_MODULE "EQ2EMu WorldServer"
|
|
#endif
|
|
|
|
#if defined(LOGIN)
|
|
#define CURRENT_VERSION "0.9.9-Nebula"
|
|
#elif defined(WORLD)
|
|
#define CURRENT_VERSION "0.9.9-Nebula"
|
|
#else
|
|
#define CURRENT_VERSION "0.9.9-Nebula"
|
|
#endif
|
|
|
|
#define COMPILE_DATE __DATE__
|
|
#define COMPILE_TIME __TIME__
|
|
#ifndef WIN32
|
|
#define LAST_MODIFIED __TIME__
|
|
#else
|
|
#define LAST_MODIFIED __TIMESTAMP__
|
|
#endif
|
|
|
|
#endif |