Changeset 371 for trunk/include
- Timestamp:
- Nov 7, 2008, 1:15:15 AM (17 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/cppbase/bs_logger.h
r342 r371 12 12 13 13 /* 14 * This file Copyright (C) 1999-200 6Ulrich Mller.14 * This file Copyright (C) 1999-2008 Ulrich Mller. 15 15 * This program is free software; you can redistribute it and/or modify 16 16 * it under the terms of the GNU General Public License as published by … … 92 92 *@@changed V0.9.20 (2002-07-22) [umoeller]: added copy constructor to avoid flat copy 93 93 *@@changed WarpIN V1.0.10 (2006-04-05) [pr]: added Clear method 94 *@@changed WarpIN V1.0.18 (2008-10-06) [pr]: added Store(PXINI...) and Load(PXINI...) 94 95 */ 95 96 … … 117 118 118 119 BOOL Store(HINI hini, const char *pszApp, const char *pszKey) const; 120 BOOL Store(PXINI pXIni, const char *pszApp, const char *pszKey) const; 119 121 BOOL Load(HINI hini, const char *pszApp, const char *pszKey); 122 BOOL Load(PXINI pXIni, const char *pszApp, const char *pszKey); 120 123 }; 121 124 -
trunk/include/helpers/xprf.h
r229 r371 14 14 */ 15 15 16 /* Copyright (C) 2000 Ulrich Mller.16 /* Copyright (C) 2000-2008 Ulrich Mller. 17 17 * This file is part of the "XWorkplace helpers" source package. 18 18 * This is free software; you can redistribute it and/or modify … … 168 168 #endif 169 169 170 APIRET xprfOpenProfile( const char *pcszFilename,170 APIRET xprfOpenProfile(PCSZ pcszFilename, 171 171 PXINI *ppxini); 172 172 … … 184 184 PULONG pulBufferMax); 185 185 186 LONG xprfQueryProfileInt(PXINI pXIni, 187 PCSZ pcszApp, 188 PCSZ pcszKey, 189 LONG lDefault); 190 186 191 APIRET xprfWriteProfileData(PXINI hIni, 187 const char *pcszApp,188 const char *pcszKey,192 PCSZ pcszApp, 193 PCSZ pcszKey, 189 194 PVOID pData, 190 195 ULONG ulDataLen); 196 197 APIRET xprfWriteProfileString(PXINI pXIni, 198 PCSZ pcszApp, 199 PCSZ pcszKey, 200 PCSZ pcszString); 191 201 192 202 APIRET xprfQueryKeysForApp(PXINI hIni, 193 203 PCSZ pcszApp, 194 204 PSZ *ppszKeys); 205 206 PSZ xprfhQueryProfileData(PXINI pXIni, 207 PCSZ pcszApp, 208 PCSZ pcszKey, 209 PULONG pcbBuf); 195 210 196 211 /* ******************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.