|
|
1.1 ! root 1: ! 2: /*---------------------------------------------------------------*/ ! 3: /* */ ! 4: /* The following section actually creates the version structure. */ ! 5: /* They are ignored if we are not being invoked by RC. */ ! 6: /* */ ! 7: /* ntverp.H must be included before including this file */ ! 8: /* */ ! 9: /* If VER_LEGALCOPYRIGHT_STR is not defined, it will be */ ! 10: /* constructed using VER_LEGALCOPYRIGHT_YEARS, so at least one */ ! 11: /* these macros must be defined before including this file. */ ! 12: /* */ ! 13: /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR, and */ ! 14: /* VER_INTERNALNAME_STR must be defined before including this */ ! 15: /* file. */ ! 16: /* */ ! 17: /* If VER_FILEVERSION is not defined, VER_PRODUCTVERSION will be */ ! 18: /* used instead. If VER_FILEVERSION_STR is not defined, */ ! 19: /* VER_PRODUCTVERSION_STR will be used instead. */ ! 20: /* */ ! 21: /* If VER_ORIGINALFILENAME_STR is not defined, it is set to */ ! 22: /* the value in VER_INTERNALNAME_STR. */ ! 23: /* */ ! 24: /* If INTL is defined, then this is assumed to be an */ ! 25: /* an international build; two string blocks will be created, */ ! 26: /* (since all version resources must have English), and the */ ! 27: /* second one can be localized */ ! 28: /* */ ! 29: /*---------------------------------------------------------------*/ ! 30: ! 31: #ifdef RC_INVOKED ! 32: ! 33: #ifndef VER_LEGALCOPYRIGHT_YEARS ! 34: #define VER_LEGALCOPYRIGHT_YEARS "1981-1993" ! 35: #endif ! 36: ! 37: #ifndef VER_LEGALCOPYRIGHT_STR ! 38: #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corp. " VER_LEGALCOPYRIGHT_YEARS ! 39: #endif ! 40: ! 41: #ifndef VER_PRODUCTNAME_STR ! 42: #define VER_PRODUCTNAME_STR "Microsoft\256 Windows NT(TM) Operating System" ! 43: #endif ! 44: ! 45: #ifndef VER_PRODUCTVERSION ! 46: #define VER_PRODUCTVERSION 3,10,01,001 ! 47: #endif ! 48: ! 49: #ifndef VER_FILEVERSION ! 50: #define VER_FILEVERSION VER_PRODUCTVERSION ! 51: #endif ! 52: ! 53: #ifndef VER_PRODUCTVERSION_STR ! 54: #define VER_PRODUCTVERSION_STR "3.10" ! 55: #endif ! 56: ! 57: #ifndef VER_FILEVERSION_STR ! 58: #define VER_FILEVERSION_STR VER_PRODUCTVERSION_STR ! 59: #endif ! 60: ! 61: #ifndef VER_ORIGINALFILENAME_STR ! 62: #define VER_ORIGINALFILENAME_STR VER_INTERNALNAME_STR ! 63: #endif ! 64: ! 65: VS_VERSION_INFO VERSIONINFO ! 66: FILEVERSION VER_FILEVERSION ! 67: PRODUCTVERSION VER_PRODUCTVERSION ! 68: FILEFLAGSMASK VER_FILEFLAGSMASK ! 69: FILEFLAGS VER_FILEFLAGS ! 70: FILEOS VER_FILEOS ! 71: FILETYPE VER_FILETYPE ! 72: FILESUBTYPE VER_FILESUBTYPE ! 73: BEGIN ! 74: BLOCK "StringFileInfo" ! 75: BEGIN ! 76: BLOCK "040904B0" /* LANG_ENGLISH/SUBLANG_ENGLISH_US, Unicode CP */ ! 77: BEGIN ! 78: VALUE "CompanyName", VER_COMPANYNAME_STR ! 79: VALUE "FileDescription", VER_FILEDESCRIPTION_STR ! 80: VALUE "FileVersion", VER_FILEVERSION_STR ! 81: VALUE "InternalName", VER_INTERNALNAME_STR ! 82: VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR ! 83: VALUE "OriginalFilename",VER_ORIGINALFILENAME_STR ! 84: VALUE "ProductName", VER_PRODUCTNAME_STR ! 85: VALUE "ProductVersion", VER_PRODUCTVERSION_STR ! 86: END ! 87: ! 88: END ! 89: ! 90: BLOCK "VarFileInfo" ! 91: BEGIN ! 92: VALUE "Translation", 0x040904B0L ! 93: END ! 94: END ! 95: ! 96: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.