34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
#include "windows.h"
|
|
#include <ntverp.h>
|
|
|
|
#define _VERSION_RC_
|
|
#include "ClusOCMResources.h"
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Version
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Cluster Optional Component Manager"
|
|
#define VER_INTERNALNAME_STR "ClusOCM.dll"
|
|
#define VER_ORIGINALFILENAME_STR "ClusOCM.dll"
|
|
|
|
#include "common.ver"
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// String Table
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
|
|
IDS_CLUADMIN_INFO_TIP "Configures and manages server clusters"
|
|
IDS_CLUADMIN_SHORTCUT "Cluster Administrator"
|
|
IDS_CLUSSVC_DISPLAY_NAME "Cluster Service"
|
|
IDS_CLUSSVC_SERVICE_DESC "Enables servers to work together as a cluster to keep server-based applications highly available, regardless of individual component failures."
|
|
|
|
|
|
END |