15 lines
587 B
C
15 lines
587 B
C
#if !defined(__GAM_Version_h__)
|
|
#define __GAM_Version_h__
|
|
|
|
/******************************************/
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif /* _MSC_VER >= 1000 */
|
|
/******************************************/
|
|
|
|
#define C_szGamVersion "GAM V5.7.0" /* The format is XXX Va.b.c with Xxx is the Tag of the module */
|
|
#define C_szGamFullName "Game library" /* the complete and clear name of the module */
|
|
#define C_szGamDate "Sept 01 1997" /* The format is "Mmm dd yyyy".You can use __DATE__ but be careful that you have the control of the compilation*/
|
|
|
|
#endif /* __GAM_Version_h__ */
|