xref: /reactos/base/applications/cmdutils/reg/reg.h (revision c7bba39a)
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 
19 #ifndef __REG_H__
20 #define __REG_H__
21 
22 #include "resource.h"
23 
24 #define ARRAY_SIZE(A) (sizeof(A)/sizeof(*A))
25 #define MAX_SUBKEY_LEN   257
26 
27 /* reg.c */
28 void *heap_xalloc(size_t size);
29 void *heap_xrealloc(void *buf, size_t size);
30 void output_writeconsole(const WCHAR *str, DWORD wlen);
31 void WINAPIV output_message(unsigned int id, ...);
32 BOOL ask_confirm(unsigned int msgid, WCHAR *reg_info);
33 HKEY path_get_rootkey(const WCHAR *path);
34 WCHAR *build_subkey_path(WCHAR *path, DWORD path_len, WCHAR *subkey_name, DWORD subkey_len);
35 BOOL parse_registry_key(const WCHAR *key, HKEY *root, WCHAR **path, WCHAR **long_key);
36 
37 /* import.c */
38 int reg_import(const WCHAR *filename);
39 
40 /* export.c */
41 int reg_export(int argc, WCHAR *argv[]);
42 
43 #endif /* __REG_H__ */
44