ansicon/version.h
Jason Hood b2c8a9ec12 LoadLibrary hooking improvements.
Don't hook ourself from LoadLibrary or LoadLibraryEx.
Test additional LoadLibraryEx flags before deciding to hook.
2014-01-25 23:43:41 +10:00

20 lines
466 B
C

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