2 * Copyright 2017 Hugh McMaster
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.
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.
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
26 #define MAX_SUBKEY_LEN 257
29 struct reg_type_rels
{
34 extern const struct reg_type_rels type_rels
[8];
36 void output_writeconsole(const WCHAR
*str
, DWORD wlen
);
37 void WINAPIV
output_message(unsigned int id
, ...);
38 void WINAPIV
output_string(const WCHAR
*fmt
, ...);
39 BOOL
ask_confirm(unsigned int msgid
, WCHAR
*reg_info
);
40 HKEY
path_get_rootkey(const WCHAR
*path
);
41 WCHAR
*build_subkey_path(WCHAR
*path
, DWORD path_len
, WCHAR
*subkey_name
, DWORD subkey_len
);
42 WCHAR
*get_long_key(HKEY root
, WCHAR
*path
);
43 BOOL
parse_registry_key(const WCHAR
*key
, HKEY
*root
, WCHAR
**path
);
44 BOOL
is_char(const WCHAR s
, const WCHAR c
);
45 BOOL
is_switch(const WCHAR
*s
, const WCHAR c
);
48 int reg_add(int argc
, WCHAR
*argvW
[]);
51 int reg_copy(int argc
, WCHAR
*argvW
[]);
54 int reg_delete(int argc
, WCHAR
*argvW
[]);
57 int reg_export(int argc
, WCHAR
*argvW
[]);
60 int reg_import(int argc
, WCHAR
*argvW
[]);
63 int reg_query(int argc
, WCHAR
*argvW
[]);
65 #endif /* __REG_H__ */