Kaydet (Commit) cade2b8f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

No need for a C API here

Change-Id: Ie453a7c97a762932884c5c41b13607a170368107
üst 65560433
...@@ -17,18 +17,14 @@ ...@@ -17,18 +17,14 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#ifndef INCLUDED_REGISTRY_INC_REGISTRY_H #ifndef INCLUDED_REGISTRY_INC_REGAPI_HXX
#define INCLUDED_REGISTRY_INC_REGISTRY_H #define INCLUDED_REGISTRY_INC_REGAPI_HXX
#include <stddef.h> #include <stddef.h>
#include <rtl/ustring.h> #include <rtl/ustring.h>
#include <registry/regtype.h> #include <registry/regtype.h>
#include <registry/regdllapi.h> #include <registry/regdllapi.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/** This function creates the specified key. /** This function creates the specified key.
If the key already exists in the registry, the function opens the key only. If the key already exists in the registry, the function opens the key only.
...@@ -295,7 +291,7 @@ REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_freeValueList(RegValueType valueTyp ...@@ -295,7 +291,7 @@ REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_freeValueList(RegValueType valueTyp
*/ */
REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_getResolvedKeyName(RegKeyHandle hKey, REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_getResolvedKeyName(RegKeyHandle hKey,
rtl_uString* keyName, rtl_uString* keyName,
sal_Bool firstLinkOnly, bool firstLinkOnly,
rtl_uString** pResolvedName); rtl_uString** pResolvedName);
/** This function loads registry information from a file and save it under the /** This function loads registry information from a file and save it under the
...@@ -350,8 +346,8 @@ REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_saveKey(RegKeyHandle hKey, ...@@ -350,8 +346,8 @@ REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_saveKey(RegKeyHandle hKey,
REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_mergeKey(RegKeyHandle hKey, REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_mergeKey(RegKeyHandle hKey,
rtl_uString* keyName, rtl_uString* keyName,
rtl_uString* regFileName, rtl_uString* regFileName,
sal_Bool bWarnings, bool bWarnings,
sal_Bool bReport); bool bReport);
/** This function creates a new registry with the specified name and creates a root key. /** This function creates a new registry with the specified name and creates a root key.
...@@ -388,7 +384,7 @@ REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_getName(RegHandle hRegistry, rtl_uS ...@@ -388,7 +384,7 @@ REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_getName(RegHandle hRegistry, rtl_uS
@param hReg identifies a currently open registry. @param hReg identifies a currently open registry.
@return TRUE if accessmode is read only else FALSE. @return TRUE if accessmode is read only else FALSE.
*/ */
REG_DLLPUBLIC sal_Bool REGISTRY_CALLTYPE reg_isReadOnly(RegHandle hReg); REG_DLLPUBLIC bool REGISTRY_CALLTYPE reg_isReadOnly(RegHandle hReg);
/** This function opens a registry with the specified name. /** This function opens a registry with the specified name.
...@@ -431,10 +427,6 @@ REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_destroyRegistry(RegHandle hRegistry ...@@ -431,10 +427,6 @@ REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_destroyRegistry(RegHandle hRegistry
*/ */
REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_dumpRegistry(RegKeyHandle hKey); REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_dumpRegistry(RegKeyHandle hKey);
#ifdef __cplusplus
}
#endif
#endif #endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef INCLUDED_REGISTRY_SOURCE_KEYIMPL_HXX #ifndef INCLUDED_REGISTRY_SOURCE_KEYIMPL_HXX
#define INCLUDED_REGISTRY_SOURCE_KEYIMPL_HXX #define INCLUDED_REGISTRY_SOURCE_KEYIMPL_HXX
#include <registry.h> #include <regapi.hxx>
#include "regimpl.hxx" #include "regimpl.hxx"
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include <set> #include <set>
#include <unordered_map> #include <unordered_map>
#include <registry.h> #include <regapi.hxx>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <osl/mutex.hxx> #include <osl/mutex.hxx>
#include <store/store.hxx> #include <store/store.hxx>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
*/ */
#include <registry.h> #include <regapi.hxx>
#include <registry/registry.hxx> #include <registry/registry.hxx>
#include <osl/process.h> #include <osl/process.h>
...@@ -485,8 +485,8 @@ RegError REGISTRY_CALLTYPE reg_saveKey(RegKeyHandle hKey, ...@@ -485,8 +485,8 @@ RegError REGISTRY_CALLTYPE reg_saveKey(RegKeyHandle hKey,
RegError REGISTRY_CALLTYPE reg_mergeKey(RegKeyHandle hKey, RegError REGISTRY_CALLTYPE reg_mergeKey(RegKeyHandle hKey,
rtl_uString* keyName, rtl_uString* keyName,
rtl_uString* regFileName, rtl_uString* regFileName,
sal_Bool bWarnings, bool bWarnings,
sal_Bool bReport) bool bReport)
{ {
ORegKey *pKey; ORegKey *pKey;
...@@ -541,7 +541,7 @@ RegError REGISTRY_CALLTYPE reg_getName(RegHandle hRegistry, rtl_uString** pName) ...@@ -541,7 +541,7 @@ RegError REGISTRY_CALLTYPE reg_getName(RegHandle hRegistry, rtl_uString** pName)
// reg_isReadOnly // reg_isReadOnly
sal_Bool REGISTRY_CALLTYPE reg_isReadOnly(RegHandle hRegistry) bool REGISTRY_CALLTYPE reg_isReadOnly(RegHandle hRegistry)
{ {
return isReadOnly(hRegistry); return isReadOnly(hRegistry);
} }
......
...@@ -907,7 +907,7 @@ RegError REGISTRY_CALLTYPE reg_freeValueList(RegValueType valueType, ...@@ -907,7 +907,7 @@ RegError REGISTRY_CALLTYPE reg_freeValueList(RegValueType valueType,
RegError REGISTRY_CALLTYPE reg_getResolvedKeyName(RegKeyHandle hKey, RegError REGISTRY_CALLTYPE reg_getResolvedKeyName(RegKeyHandle hKey,
rtl_uString* keyName, rtl_uString* keyName,
sal_Bool firstLinkOnly, bool firstLinkOnly,
rtl_uString** pResolvedName) rtl_uString** pResolvedName)
{ {
if (!hKey) if (!hKey)
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
*/ */
#include "registry.h" #include "regapi.hxx"
#include "fileurl.hxx" #include "fileurl.hxx"
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment