winprefs v0.3.2
A registry exporter for programmers.
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
22DLL_EXPORT bool save_preferences(bool commit,
23 const wchar_t *deploy_key,
24 const wchar_t *output_dir,
25 const wchar_t *output_file,
26 int max_depth,
27 HKEY hk,
28 const wchar_t *specified_path,
29 enum OUTPUT_FORMAT format,
30 writer_t *writer);
32
39DLL_EXPORT bool export_single_value(HKEY top_key,
40 const wchar_t *reg_path,
41 enum OUTPUT_FORMAT format,
42 writer_t *writer);
43#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:105
DLL_EXPORT bool save_preferences(bool commit, 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:37