
CR and BS would still be processed during CRM. Fix all the partial CRM sequences followed by a complete CRM sequence. It's possible for some text files to have `\r\r\n` endings (Microsoft converts LF to CRLF even when the CR is already there). Collapse multiple CRs to a single CR to catch this. It is also necessary to always delay flushing if the last character is CR, to see if the next character is CR or LF.
20 lines
466 B
C
20 lines
466 B
C
/*
|
|
version.h - Version defines.
|
|
*/
|
|
|
|
#define PVERS L"1.81-wip" // wide string
|
|
#define PVERSA "1.81-wip" // 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"
|