34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
//---------------------------------------------------------------------------------
|
|
// Windows Update versioning Resource file.
|
|
//
|
|
// This file should be updated with component specific information and included
|
|
// in your <component>.rc file in place of the automatically generated version
|
|
// resources.
|
|
//
|
|
#include "..\..\inc\wuverp.h"
|
|
|
|
//---------------------------------------------------------------------------------
|
|
// VFT_FILETYPE should be either VFT_APP or VFT_DLL
|
|
//
|
|
#define VER_FILETYPE VFT_DLL
|
|
|
|
//---------------------------------------------------------------------------------
|
|
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
|
|
// "Industry Update" is already defined in the string. So, if you want to
|
|
// say, "Industry Update Engine" just change the argument of the macro
|
|
// to "Engine"
|
|
|
|
#if defined(_WUV3TEST)
|
|
#define VER_FILEDESCRIPTION_STR WU_VER_FILEDESCRIPTION_STR("Engine (Test)")
|
|
#elif defined(WUBETA)
|
|
#define VER_FILEDESCRIPTION_STR WU_VER_FILEDESCRIPTION_STR("Engine (Beta)")
|
|
#else
|
|
#define VER_FILEDESCRIPTION_STR WU_VER_FILEDESCRIPTION_STR("Engine")
|
|
#endif
|
|
|
|
#define VER_INTERNALNAME_STR "wuv3is.dll"
|
|
|
|
#include "common.ver"
|