Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / osl / profile.h
blobe8584ec85b855190290863de316e7b61f64bc007
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_OSL_PROFILE_H
21 #define INCLUDED_OSL_PROFILE_H
23 #include <sal/config.h>
25 #include <rtl/ustring.h>
26 #include <sal/saldllapi.h>
27 #include <sal/types.h>
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
33 typedef sal_uInt32 oslProfileOption;
35 #define osl_Profile_DEFAULT 0x0000
36 #define osl_Profile_SYSTEM 0x0001 /* use system depended functinality */
37 #define osl_Profile_READLOCK 0x0002 /* lock file for reading */
38 #define osl_Profile_WRITELOCK 0x0004 /* lock file for writing */
39 #define osl_Profile_FLUSHWRITE 0x0010 /* writing only with flush */
42 typedef void* oslProfile;
44 /** Deprecated API.
45 Open or create a configuration profile.
46 @retval 0 if the profile could not be created, otherwise a handle to the profile.
47 @deprecated
49 SAL_DLLPUBLIC oslProfile SAL_CALL osl_openProfile(
50 rtl_uString *strProfileName, oslProfileOption Options) SAL_COLD;
52 /** Deprecated API.
53 Close the opened profile an flush all data to the disk.
54 @param Profile handle to a opened profile.
55 @deprecated
57 SAL_DLLPUBLIC sal_Bool SAL_CALL osl_closeProfile(
58 oslProfile Profile) SAL_COLD;
61 /** Deprecated API.
62 @deprecated
64 SAL_DLLPUBLIC sal_Bool SAL_CALL osl_flushProfile(
65 oslProfile Profile) SAL_COLD;
66 /** Deprecated API.
67 @deprecated
69 SAL_DLLPUBLIC sal_Bool SAL_CALL osl_readProfileString(
70 oslProfile Profile,
71 const sal_Char* pszSection, const sal_Char* pszEntry,
72 sal_Char* pszString, sal_uInt32 MaxLen,
73 const sal_Char* pszDefault) SAL_COLD;
74 /** Deprecated API.
75 @deprecated
77 SAL_DLLPUBLIC sal_Bool SAL_CALL osl_readProfileBool(
78 oslProfile Profile,
79 const sal_Char* pszSection, const sal_Char* pszEntry,
80 sal_Bool Default) SAL_COLD;
81 /** Deprecated API.
82 @deprecated
84 SAL_DLLPUBLIC sal_uInt32 SAL_CALL osl_readProfileIdent(
85 oslProfile Profile,
86 const sal_Char* pszSection, const sal_Char* pszEntry,
87 sal_uInt32 FirstId, const sal_Char* Strings[],
88 sal_uInt32 Default) SAL_COLD;
90 /** Deprecated API.
91 @deprecated
93 SAL_DLLPUBLIC sal_Bool SAL_CALL osl_writeProfileString(
94 oslProfile Profile,
95 const sal_Char* pszSection, const sal_Char* pszEntry,
96 const sal_Char* pszString) SAL_COLD;
97 /** Deprecated API.
98 @deprecated
100 SAL_DLLPUBLIC sal_Bool SAL_CALL osl_writeProfileBool(
101 oslProfile Profile,
102 const sal_Char* pszSection, const sal_Char* pszEntry,
103 sal_Bool Value) SAL_COLD;
104 /** Deprecated API.
105 @deprecated
107 SAL_DLLPUBLIC sal_Bool SAL_CALL osl_writeProfileIdent(
108 oslProfile Profile,
109 const sal_Char* pszSection, const sal_Char* pszEntry,
110 sal_uInt32 FirstId, const sal_Char* Strings[],
111 sal_uInt32 Value) SAL_COLD;
113 /** Deprecated API.
114 Acquire the mutex, block if already acquired by another thread.
115 @retval False if section or entry could not be found.
116 @deprecated
118 SAL_DLLPUBLIC sal_Bool SAL_CALL osl_removeProfileEntry(
119 oslProfile Profile,
120 const sal_Char *pszSection, const sal_Char *pszEntry) SAL_COLD;
122 /** Deprecated API.
123 Get all entries belonging to the specified section.
124 @returns Pointer to a array of pointers.
125 @deprecated
127 SAL_DLLPUBLIC sal_uInt32 SAL_CALL osl_getProfileSectionEntries(
128 oslProfile Profile, const sal_Char *pszSection,
129 sal_Char* pszBuffer, sal_uInt32 MaxLen) SAL_COLD;
131 /** Deprecated API.
132 Get all section entries
133 @retval Pointer to a array of pointers.
134 @deprecated
136 SAL_DLLPUBLIC sal_uInt32 SAL_CALL osl_getProfileSections(
137 oslProfile Profile, sal_Char* pszBuffer, sal_uInt32 MaxLen) SAL_COLD;
139 #ifdef __cplusplus
141 #endif
143 #endif // INCLUDED_OSL_PROFILE_H
145 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */