office-gobmx/configmgr/source/winreg.hxx
Michael Meeks 097292feab Add HKEY_CURRENT_USER registry integration.
It seems rather odd that we dump this to a file and parse again to me.

Change-Id: Ia32ba9ff3e7878d40032bd7d10fba2c143d11757
Reviewed-on: https://gerrit.libreoffice.org/17033
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
2015-07-14 20:20:32 +00:00

24 lines
637 B
C++

/* -*- 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/.
*
*/
#ifndef INCLUDED_CONFIGMGR_SOURCE_WINREG_HXX
#define INCLUDED_CONFIGMGR_SOURCE_WINREG_HXX
namespace configmgr {
enum WinRegType { LOCAL_MACHINE, CURRENT_USER };
bool dumpWindowsRegistry(OUString* pFileURL, WinRegType eType);
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */