2008-03-19 07:36:28 +01:00
|
|
|
/*
|
|
|
|
* REG.EXE - Wine-compatible reg program.
|
|
|
|
*
|
|
|
|
* Copyright 2008 Andrew Riedi
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2009-07-02 00:29:26 +02:00
|
|
|
#include <windef.h>
|
|
|
|
|
2008-03-19 07:36:28 +01:00
|
|
|
/* Translation IDs. */
|
|
|
|
#define STRING_USAGE 101
|
|
|
|
#define STRING_ADD_USAGE 102
|
|
|
|
#define STRING_DELETE_USAGE 103
|
|
|
|
#define STRING_QUERY_USAGE 104
|
2009-01-28 14:14:07 +01:00
|
|
|
#define STRING_SUCCESS 105
|
|
|
|
#define STRING_INVALID_KEY 106
|
|
|
|
#define STRING_INVALID_CMDLINE 107
|
|
|
|
#define STRING_NO_REMOTE 108
|
2009-01-28 14:14:18 +01:00
|
|
|
#define STRING_CANNOT_FIND 109
|
2015-02-19 13:19:12 +01:00
|
|
|
#define STRING_UNSUPPORTED_TYPE 110
|
2016-02-09 12:54:04 +01:00
|
|
|
#define STRING_MISSING_INTEGER 111
|
|
|
|
#define STRING_MISSING_HEXDATA 112
|
|
|
|
#define STRING_UNHANDLED_TYPE 113
|
2016-02-09 12:54:07 +01:00
|
|
|
#define STRING_OVERWRITE_VALUE 114
|
|
|
|
#define STRING_YESNO 115
|
|
|
|
#define STRING_YES 116
|
|
|
|
#define STRING_NO 117
|
|
|
|
#define STRING_CANCELLED 118
|
2016-02-10 12:23:17 +01:00
|
|
|
#define STRING_DEFAULT_VALUE 119
|
2016-02-10 12:23:18 +01:00
|
|
|
#define STRING_DELETE_VALUE 120
|
|
|
|
#define STRING_DELETE_VALUEALL 121
|
|
|
|
#define STRING_DELETE_SUBKEY 122
|
2016-02-29 05:54:21 +01:00
|
|
|
#define STRING_INVALID_STRING 123
|
2016-03-31 11:26:56 +02:00
|
|
|
#define STRING_VALUEALL_FAILED 124
|
2016-04-06 14:56:13 +02:00
|
|
|
#define STRING_GENERAL_FAILURE 125
|
2016-05-02 14:06:23 +02:00
|
|
|
#define STRING_MATCHES_FOUND 126
|
2016-05-24 14:48:26 +02:00
|
|
|
#define STRING_INVALID_SYNTAX 127
|
|
|
|
#define STRING_INVALID_OPTION 128
|
|
|
|
#define STRING_REG_HELP 129
|
2016-05-24 14:48:48 +02:00
|
|
|
#define STRING_FUNC_HELP 130
|
2016-07-21 09:36:44 +02:00
|
|
|
#define STRING_VALUE_NOT_SET 131
|
2017-08-18 11:29:54 +02:00
|
|
|
#define STRING_IMPORT_USAGE 132
|
2017-08-18 11:30:04 +02:00
|
|
|
#define STRING_FILE_NOT_FOUND 133
|
|
|
|
#define STRING_OPEN_KEY_FAILED 134
|
2017-08-18 11:30:17 +02:00
|
|
|
#define STRING_ESCAPE_SEQUENCE 135
|