2002-04-11 23:58:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1999 Sylvain St-Germain
|
|
|
|
* Copyright 2002 Andriy Palamarchuk
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-04-11 23:58:40 +00:00
|
|
|
*/
|
|
|
|
|
2016-07-15 07:49:48 +00:00
|
|
|
#include "resource.h"
|
|
|
|
|
2002-05-31 23:06:46 +00:00
|
|
|
#define KEY_MAX_LEN 1024
|
2002-04-11 23:58:40 +00:00
|
|
|
|
2008-09-14 00:21:23 +00:00
|
|
|
#define REG_FORMAT_5 1
|
|
|
|
#define REG_FORMAT_4 2
|
|
|
|
|
2017-11-02 09:21:53 +00:00
|
|
|
void WINAPIV output_message(unsigned int id, ...);
|
|
|
|
void WINAPIV error_exit(unsigned int id, ...);
|
2016-07-15 07:49:48 +00:00
|
|
|
|
2017-07-27 12:25:17 +00:00
|
|
|
char *GetMultiByteString(const WCHAR *strW);
|
|
|
|
void *heap_xalloc(size_t size);
|
2017-07-27 12:25:26 +00:00
|
|
|
void *heap_xrealloc(void *buf, size_t size);
|
2017-07-27 12:25:17 +00:00
|
|
|
BOOL heap_free(void *buf);
|
|
|
|
BOOL import_registry_file(FILE *reg_file);
|
2008-07-09 16:18:14 +00:00
|
|
|
void delete_registry_key(WCHAR *reg_key_name);
|
2017-07-27 12:25:17 +00:00
|
|
|
BOOL export_registry_key(WCHAR *file_name, WCHAR *path, DWORD format);
|