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.
52 lines
1.8 KiB
52 lines
1.8 KiB
//
|
|
// System level IO verification configuration utility
|
|
// Copyright (c) Microsoft Corporation, 1999
|
|
//
|
|
|
|
//
|
|
// module: resid.hxx
|
|
// author: DMihai
|
|
// created: 04/19/99
|
|
// description: resource IDs
|
|
//
|
|
//
|
|
|
|
#ifndef __RESID_HXX_INCLUDED__
|
|
#define __RESID_HXX_INCLUDED__
|
|
|
|
//
|
|
// string IDs
|
|
//
|
|
|
|
#define IDS_FIRST 25000
|
|
|
|
#define IDS_HELP_LINE1 ( IDS_FIRST + 1 )
|
|
#define IDS_HELP_LINE3 ( IDS_FIRST + 2 )
|
|
#define IDS_HELP_LINE4 ( IDS_FIRST + 3 )
|
|
#define IDS_HELP_LINE5 ( IDS_FIRST + 4 )
|
|
#define IDS_HELP_LINE6 ( IDS_FIRST + 5 )
|
|
#define IDS_HELP_LINE7 ( IDS_FIRST + 6 )
|
|
#define IDS_HELP_LINE8 ( IDS_FIRST + 7 )
|
|
#define IDS_HELP_LINE9 ( IDS_FIRST + 8 )
|
|
|
|
#define IDS_ENABLE_CMDLINE_OPTION ( IDS_FIRST + 100 )
|
|
#define IDS_DISABLE_CMDLINE_OPTION ( IDS_FIRST + 101 )
|
|
#define IDS_STATUS_CMDLINE_OPTION ( IDS_FIRST + 102 )
|
|
|
|
#define IDS_CANNOT_ALLOCATE_MEMORY ( IDS_FIRST + 203 )
|
|
#define IDS_ACCESS_IS_DENIED ( IDS_FIRST + 204 )
|
|
#define IDS_REGOPENKEYEX_FAILED ( IDS_FIRST + 205 )
|
|
#define IDS_REGQUERYVALUEEX_FAILED ( IDS_FIRST + 206 )
|
|
#define IDS_REGQUERYVALUEEX_UNEXP_TYPE ( IDS_FIRST + 207 )
|
|
#define IDS_REGQUERYVALUEEX_UNEXP_SIZE ( IDS_FIRST + 208 )
|
|
#define IDS_REGSETVALUEEX_FAILED ( IDS_FIRST + 209 )
|
|
#define IDS_VERIFIER_ENABLED_FORMAT ( IDS_FIRST + 210 )
|
|
#define IDS_VERIFIER_NOT_ENABLED_FORMAT ( IDS_FIRST + 211 )
|
|
#define IDS_MUST_REBOOT ( IDS_FIRST + 212 )
|
|
#define IDS_NOTHING_CHANGED ( IDS_FIRST + 213 )
|
|
#define IDS_REGCREATEKEYEX_FAILED ( IDS_FIRST + 214 )
|
|
#define IDS_REGDELETEVALUE_FAILED ( IDS_FIRST + 215 )
|
|
#define IDS_KVERIFY_ENABLED ( IDS_FIRST + 216 )
|
|
|
|
#endif //#ifndef __RESID_HXX_INCLUDED__
|
|
|