I accidentally a file

This commit is contained in:
Ben "root" Anderson
2015-01-28 20:05:34 -06:00
parent 8586f39a9c
commit da49c509dd
+17
View File
@@ -0,0 +1,17 @@
#ifndef STEPMANIA_VER_H
#define STEPMANIA_VER_H
// HACK: The MSVC project doesn't generate this yet
#ifdef _MSC_VER
#define product_version "5.0-UNKNOWN"
#else
extern const char *const product_version;
#endif
// XXX: These names are misnomers. This is actually the BUILD number, time and date.
// NOTE: In GNU toolchain these are defined in ver.cpp. In MSVC these are defined in archutils/Win32/verinc.c I think. Why? I don't know and I don't have MSVC. --root
extern const unsigned long version_num;
extern const char *const version_time;
extern const char *const version_date;
#endif