ansicon/version.h
2017-12-30 11:46:02 +10:00

20 lines
466 B
C

/*
version.h - Version defines.
*/
#define PVERS L"1.81" // wide string
#define PVERSA "1.81" // ANSI string (windres 2.16.91 didn't like L)
#define PVERE L"181" // wide environment string
#define PVEREA "181" // ANSI environment string
#define PVERB 1,8,1,0 // binary (resource)
#ifdef _WIN64
# define BITS L"64"
# define BITSA "64"
#else
# define BITS L"32"
# define BITSA "32"
#endif
#define ANSIDLL L"ANSI" BITS L".dll"