resource.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * REG.EXE - Wine-compatible reg program.
  3. *
  4. * Copyright 2008 Andrew Riedi
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  19. */
  20. #include <windef.h>
  21. /* Translation IDs */
  22. /* Shared */
  23. #define STRING_YES 100
  24. #define STRING_NO 101
  25. #define STRING_ALL 102
  26. #define STRING_YESNO 103
  27. #define STRING_YESNOALL 104
  28. #define STRING_INVALID_SYNTAX 105
  29. #define STRING_FUNC_HELP 106
  30. #define STRING_ACCESS_DENIED 107
  31. #define STRING_SUCCESS 108
  32. #define STRING_CANCELLED 109
  33. #define STRING_KEY_NONEXIST 110
  34. #define STRING_VALUE_NONEXIST 111
  35. #define STRING_DEFAULT_VALUE 112
  36. /* reg.c */
  37. #define STRING_REG_HELP 150
  38. #define STRING_USAGE 151
  39. #define STRING_ADD_USAGE 152
  40. #define STRING_COPY_USAGE 153
  41. #define STRING_DELETE_USAGE 154
  42. #define STRING_EXPORT_USAGE 155
  43. #define STRING_IMPORT_USAGE 156
  44. #define STRING_QUERY_USAGE 157
  45. #define STRING_REG_VIEW_USAGE 164
  46. #define STRING_INVALID_KEY 165
  47. #define STRING_NO_REMOTE 166
  48. #define STRING_INVALID_SYSTEM_KEY 167
  49. #define STRING_INVALID_OPTION 168
  50. /* add.c */
  51. #define STRING_MISSING_NUMBER 200
  52. #define STRING_MISSING_HEXDATA 201
  53. #define STRING_INVALID_STRING 202
  54. #define STRING_UNHANDLED_TYPE 203
  55. #define STRING_UNSUPPORTED_TYPE 204
  56. #define STRING_OVERWRITE_VALUE 205
  57. #define STRING_INVALID_CMDLINE 206
  58. /* copy.c */
  59. #define STRING_COPY_SRC_DEST_SAME 250
  60. #define STRING_COPY_CONFIRM 251
  61. /* delete.c */
  62. #define STRING_DELETE_VALUE 300
  63. #define STRING_DELETE_VALUEALL 301
  64. #define STRING_DELETE_SUBKEY 302
  65. #define STRING_VALUEALL_FAILED 303
  66. /* export.c */
  67. #define STRING_OVERWRITE_FILE 350
  68. /* import.c */
  69. #define STRING_ESCAPE_SEQUENCE 400
  70. #define STRING_KEY_IMPORT_FAILED 401
  71. #define STRING_FILE_NOT_FOUND 402
  72. /* query.c */
  73. #define STRING_VALUE_NOT_SET 450
  74. #define STRING_MATCHES_FOUND 451