reg.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright 2017 Hugh McMaster
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  17. */
  18. #ifndef __REG_H__
  19. #define __REG_H__
  20. #include <stdlib.h>
  21. #include <windows.h>
  22. #include "resource.h"
  23. #define MAX_SUBKEY_LEN 257
  24. /* reg.c */
  25. struct reg_type_rels {
  26. DWORD type;
  27. const WCHAR *name;
  28. };
  29. extern const struct reg_type_rels type_rels[8];
  30. void output_writeconsole(const WCHAR *str, DWORD wlen);
  31. void WINAPIV output_message(unsigned int id, ...);
  32. void WINAPIV output_string(const WCHAR *fmt, ...);
  33. BOOL ask_confirm(unsigned int msgid, WCHAR *reg_info);
  34. HKEY path_get_rootkey(const WCHAR *path);
  35. WCHAR *build_subkey_path(WCHAR *path, DWORD path_len, WCHAR *subkey_name, DWORD subkey_len);
  36. WCHAR *get_long_key(HKEY root, WCHAR *path);
  37. BOOL parse_registry_key(const WCHAR *key, HKEY *root, WCHAR **path);
  38. BOOL is_char(const WCHAR s, const WCHAR c);
  39. BOOL is_switch(const WCHAR *s, const WCHAR c);
  40. /* add.c */
  41. int reg_add(int argc, WCHAR *argvW[]);
  42. /* copy.c */
  43. int reg_copy(int argc, WCHAR *argvW[]);
  44. /* delete.c */
  45. int reg_delete(int argc, WCHAR *argvW[]);
  46. /* export.c */
  47. int reg_export(int argc, WCHAR *argvW[]);
  48. /* import.c */
  49. int reg_import(int argc, WCHAR *argvW[]);
  50. /* query.c */
  51. int reg_query(int argc, WCHAR *argvW[]);
  52. #endif /* __REG_H__ */