|
TYX Corporation
CEM dll versioning document How to add a Version number to a Wcem DLL file
In order to attach a version number to a CEM dll, you will need to follow the steps below. The assumption is that you already have a CEM module with the ability to build a CEM dll. If you need help with those steps, please refer to the online help. You may want to start with the “walk-through” document on the subject:
#include "winres.h" LANGUAGE LANG_ENGLISH,
SUBLANG_ENGLISH_US #pragma code_page(1252) ///////////////////////////////////////////////////////////////////////////// // // Version // VS_VERSION_INFO VERSIONINFO FILEVERSION 1,0,0,3 PRODUCTVERSION 1,0,0,3 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L #else FILEFLAGS 0x0L #endif FILEOS 0x4L FILETYPE 0x2L FILESUBTYPE 0x0L BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN VALUE "Comments", "Your comments\0" VALUE "CompanyName", "TYX Corporation\0" VALUE "FileDescription", "Your description\0" VALUE "FileVersion", "1, 0, 0, 3\0" VALUE "InternalName", "Your internal dll name\0" VALUE "LegalCopyright", "Copyright 2001 TYX Corporation\0" VALUE "LegalTrademarks", "Your legal trademark\0" VALUE "OLESelfRegister", "Info 1\0" VALUE "OriginalFilename", "Your original DLL name\0" VALUE "PrivateBuild", "Your private build version\0" VALUE "ProductName", "Your product name\0" VALUE "ProductVersion", "1, 0, 0, 3\0" VALUE "SpecialBuild", "Your spec. build descr.\0" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 END END NOTE:
|