dxx-rebirth/main/vers_id.h

18 lines
501 B
C

/* Version defines */
#ifndef _VERS_ID
#define _VERS_ID
#define __stringize2(X) #X
#define __stringize(X) __stringize2(X)
#define DXX_VERSION_MAJOR __stringize(DXX_VERSION_MAJORi)
#define DXX_VERSION_MINOR __stringize(DXX_VERSION_MINORi)
#define DXX_VERSION_MICRO __stringize(DXX_VERSION_MICROi)
#define BASED_VERSION "Registered v1.5 Jan 5, 1996"
#define VERSION DXX_VERSION_MAJOR "." DXX_VERSION_MINOR "." DXX_VERSION_MICRO
#define DESCENT_VERSION "D1X-Rebirth v" VERSION
#endif /* _VERS_ID */