winprefs 0.4.1
Dump a registry path to a series of 'reg add' commands.
Loading...
Searching...
No Matches
registry.h
Go to the documentation of this file.
1
2#ifndef REGISTRY_H
3#define REGISTRY_H
4
5#include "io.h"
6#include "macros.h"
7
9
23DLL_EXPORT bool save_preferences(bool commit,
24 bool read_settings,
25 const wchar_t *deploy_key,
26 const wchar_t *output_dir,
27 const wchar_t *output_file,
28 int max_depth,
29 HKEY hk,
30 const wchar_t *specified_path,
31 enum OUTPUT_FORMAT format,
32 writer_t *writer);
34
41DLL_EXPORT bool export_single_value(HKEY top_key,
42 const wchar_t *reg_path,
43 enum OUTPUT_FORMAT format,
44 writer_t *writer);
45#endif // REGISTRY_H
DLL_EXPORT bool export_single_value(HKEY top_key, const wchar_t *reg_path, enum OUTPUT_FORMAT format, writer_t *writer)
Print a single registry value name to standard output.
Definition registry.c:263
DLL_EXPORT bool save_preferences(bool commit, bool read_settings, const wchar_t *deploy_key, const wchar_t *output_dir, const wchar_t *output_file, int max_depth, HKEY hk, const wchar_t *specified_path, enum OUTPUT_FORMAT format, writer_t *writer)
Starts the registry exporting process.
Definition registry.c:181
Definition io_writer.h:4