ansicon/version.h
2019-04-29 20:20:34 +10:00

20 lines
466 B
C

/*
version.h - Version defines.
*/
#define PVERS L"1.89" // wide string
#define PVERSA "1.89" // ANSI string (windres 2.16.91 didn't like L)
#define PVERE L"189" // wide environment string
#define PVEREA "189" // ANSI environment string
#define PVERB 1,8,9,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"