31 lines
926 B
Plaintext
31 lines
926 B
Plaintext
// BOS/SBS Upgrade Strings
|
|
#include "resource.h"
|
|
#include "windows.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
// String Table
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_Bos45Msg "BackOffice Server 4.5"
|
|
IDS_Bos40Msg "BackOffice Server 4.0"
|
|
IDS_Bos25Msg "BackOffice Server 2.5"
|
|
IDS_Sbs45Msg "Small Business Server 4.5"
|
|
IDS_Sbs40Msg "Small Business Server 4.0"
|
|
IDS_Sbs40AMsg "Small Business Server 4.0"
|
|
IDS_SbsRestMsg "Small Business Server"
|
|
IDS_Exchange "Exchange Server"
|
|
END
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "BOS/SBS Compliancy dll"
|
|
#define VER_INTERNALNAME_STR "boscomp\0"
|
|
#define VER_ORIGINALFILENAME_STR "boscomp.dll"
|
|
|
|
#include <common.ver>
|