mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
812 B
49 lines
812 B
#include "SysTypes.r"
|
|
#include "CodeFrag.r"
|
|
|
|
#ifndef CURRENTVER
|
|
#define CURRENTVER kNoVersionNum
|
|
#endif
|
|
|
|
#ifndef OLDDEFVER
|
|
#define OLDDEFVER kNoVersionNum
|
|
#endif
|
|
|
|
resource 'cfrg' (0)
|
|
{
|
|
{
|
|
ARCHITECTURE,
|
|
kFullLib,
|
|
CURRENTVER,
|
|
OLDDEFVER,
|
|
kDefaultStackSize,
|
|
kNoAppSubFolder,
|
|
kIsLib,
|
|
kOnDiskFlat,
|
|
kZeroOffset,
|
|
kWholeFork,
|
|
LIBNAME
|
|
}
|
|
};
|
|
|
|
resource 'vers' (1, purgeable)
|
|
{
|
|
(((JDATE/1000)%10)<<4) | (((JDATE/100)%10)<<0),
|
|
(((JDATE/10)%10)<<4) | (((JDATE/1)%10)<<0),
|
|
development,
|
|
0x04,
|
|
verUS,
|
|
"4.1d4",
|
|
"4.1d4 (" JDATESTR ") (US), \0xA9 1994-95 Microsoft Corporation"
|
|
};
|
|
|
|
resource 'vers' (2, purgeable)
|
|
{
|
|
(((JDATE/1000)%10)<<4) | (((JDATE/100)%10)<<0),
|
|
(((JDATE/10)%10)<<4) | (((JDATE/1)%10)<<0),
|
|
development,
|
|
0x04,
|
|
verUS,
|
|
"4.1d4",
|
|
"Microsoft Visual C++ 4.1 (" JDATESTR ")"
|
|
};
|