Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*--
Copyright (c) 1999-2001 Microsoft Corporation
Module Name:
vssadmin.rc
Abstract:
This file contains the resource definitions for the vssadmin.exe utility.
Author:
Adi Oltean [AOltean]
Revision History:
Stefan Steiner [SSteiner] 03/27/2001 - Moved most messages to msg.mc
--*/
#include <windows.h> #include <ntverp.h> #include "resource.h"
///////////////////////////////////////////////////////////////////////////// // English (U.S.) resources
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US #pragma code_page(1252)
///////////////////////////////////////////////////////////////////////////// // // Version //
#define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "Command Line Interface for Microsoft\256 Volume Shadow Copy Service "
#define VER_INTERNALNAME_STR "VSSADMIN.EXE" #define VER_ORIGINALFILENAME_STR VER_INTERNALNAME_STR
#include <common.ver>
///////////////////////////////////////////////////////////////////////////// // // String Table //
STRINGTABLE DISCARDABLE BEGIN IDS_UNKNOWN_PROVIDER "Unknown." IDS_PROV_TYPE_SYSTEM "System" // substring from "System provider" IDS_PROV_TYPE_SOFTWARE "Software" // substring from "Software provider" IDS_PROV_TYPE_HARDWARE "Hardware" // substring from "System provider" IDS_PROV_TYPE_UNKNOWN "Unknown type" // substring from "Unknown [provider] type." IDS_WRITER_STATUS_STABLE "Stable" // substring from "Stable state" IDS_WRITER_STATUS_FAILED "Failed" // substring from "Failed state" IDS_WRITER_STATUS_UNKNOWN "Unknown" // substring from "Unknown state" IDS_WRITER_STATUS_WAITING_FOR_FREEZE "Waiting for freeze" // substring from "Waiting for freeze state" IDS_WRITER_STATUS_FROZEN "Frozen" // substring from "Frozen state" IDS_WRITER_STATUS_WAITING_FOR_COMPLETION "Waiting for completion" // substring from "Waiting for completion state" IDS_WRITER_ERROR_SUCCESS "No error" IDS_WRITER_ERROR_INCONSISTENTSNAPSHOT "Inconsistent shadow copy" IDS_WRITER_ERROR_OUTOFRESOURCES "Out of resources" IDS_WRITER_ERROR_TIMEOUT "Timed out" IDS_WRITER_ERROR_RETRYABLE "Retryable error" IDS_WRITER_ERROR_NONRETRYABLE "Non-retryable error" IDS_WRITER_ERROR_UNEXPECTED "Unexpected error" IDS_WRITER_STATUS_WAITING_FOR_POST_SNAPSHOT "Waiting for post shadow copy" // substring from "Waiting for post snapshot" IDS_WRITER_ERROR_NOT_RESPONDING "Not responding" END
RCINCLUDE msg.rc
|