summaryrefslogtreecommitdiffstats
path: root/configmgr/source/winreg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/winreg.hxx')
-rw-r--r--configmgr/source/winreg.hxx21
1 files changed, 21 insertions, 0 deletions
diff --git a/configmgr/source/winreg.hxx b/configmgr/source/winreg.hxx
new file mode 100644
index 000000000..132a1f6d4
--- /dev/null
+++ b/configmgr/source/winreg.hxx
@@ -0,0 +1,21 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ */
+
+#pragma once
+
+namespace configmgr {
+
+enum WinRegType { LOCAL_MACHINE, CURRENT_USER };
+
+bool dumpWindowsRegistry(OUString* pFileURL, WinRegType eType);
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */