dxx-rebirth/d2x-rebirth/main/vers_id.h

18 lines
437 B
C

/* Version defines */
#ifndef _VERS_ID
#define _VERS_ID
#define __stringize2(X) #X
#define __stringize(X) __stringize2(X)
#define D2XMAJOR __stringize(DXX_VERSION_MAJORi)
#define D2XMINOR __stringize(DXX_VERSION_MINORi)
#define D2XMICRO __stringize(DXX_VERSION_MICROi)
#define BASED_VERSION "Full Version v1.2"
#define VERSION D2XMAJOR "." D2XMINOR "." D2XMICRO
#define DESCENT_VERSION "D2X-Rebirth v" VERSION
#endif /* _VERS_ID */