mirror of
https://github.com/Retropex/sys-clk.git
synced 2025-05-19 14:30:42 +02:00
69 lines
2.6 KiB
C
69 lines
2.6 KiB
C
/* minIni - Multi-Platform INI file parser, suitable for embedded systems
|
|
*
|
|
* Copyright (c) CompuPhase, 2008-2017
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
* use this file except in compliance with the License. You may obtain a copy
|
|
* of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
* Version: $Id: minIni.h 53 2015-01-18 13:35:11Z thiadmer.riemersma@gmail.com $
|
|
*/
|
|
#ifndef MININI_H
|
|
#define MININI_H
|
|
|
|
#include "minGlue.h"
|
|
|
|
#if (defined _UNICODE || defined __UNICODE__ || defined UNICODE) && !defined INI_ANSIONLY
|
|
#include <tchar.h>
|
|
#define mTCHAR TCHAR
|
|
#else
|
|
/* force TCHAR to be "char", but only for minIni */
|
|
#define mTCHAR char
|
|
#endif
|
|
|
|
#if !defined INI_BUFFERSIZE
|
|
#define INI_BUFFERSIZE 512
|
|
#endif
|
|
|
|
#if defined __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int ini_getbool(const mTCHAR *Section, const mTCHAR *Key, int DefValue, const mTCHAR *Filename);
|
|
long ini_getl(const mTCHAR *Section, const mTCHAR *Key, long DefValue, const mTCHAR *Filename);
|
|
int ini_gets(const mTCHAR *Section, const mTCHAR *Key, const mTCHAR *DefValue, mTCHAR *Buffer, int BufferSize, const mTCHAR *Filename);
|
|
int ini_getsection(int idx, mTCHAR *Buffer, int BufferSize, const mTCHAR *Filename);
|
|
int ini_getkey(const mTCHAR *Section, int idx, mTCHAR *Buffer, int BufferSize, const mTCHAR *Filename);
|
|
|
|
#if defined INI_REAL
|
|
INI_REAL ini_getf(const mTCHAR *Section, const mTCHAR *Key, INI_REAL DefValue, const mTCHAR *Filename);
|
|
#endif
|
|
|
|
#if !defined INI_READONLY
|
|
int ini_putl(const mTCHAR *Section, const mTCHAR *Key, long Value, const mTCHAR *Filename);
|
|
int ini_puts(const mTCHAR *Section, const mTCHAR *Key, const mTCHAR *Value, const mTCHAR *Filename);
|
|
int ini_putsection(const mTCHAR *Section, const mTCHAR **Keys, const mTCHAR **Values, const mTCHAR *Filename);
|
|
#if defined INI_REAL
|
|
int ini_putf(const mTCHAR *Section, const mTCHAR *Key, INI_REAL Value, const mTCHAR *Filename);
|
|
#endif
|
|
#endif /* INI_READONLY */
|
|
|
|
#if !defined INI_NOBROWSE
|
|
typedef int (*INI_CALLBACK)(const mTCHAR *Section, const mTCHAR *Key, const mTCHAR *Value, void *UserData);
|
|
int ini_browse(INI_CALLBACK Callback, void *UserData, const mTCHAR *Filename);
|
|
#endif /* INI_NOBROWSE */
|
|
|
|
#if defined __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MININI_H */
|