ansicon/version.h
Jason Hood 4e44ad519d Fix creating the wrap console buffer
If the console buffer was wider than the window then the wrap buffer
would not be created, resulting in erroneous movement.	Preserve the
height of the wrap buffer so the new width can be set.
2018-08-23 16:54:42 +10:00

20 lines
466 B
C

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