source: S-port/trunk/Core/Inc/ini.h@ 1

Last change on this file since 1 was 1, checked in by AlexLir, 3 years ago
File size: 496 bytes
Line 
1#ifndef __INI_H
2#define __INI_H
3
4#include "fatfs.h"
5
6_Bool ini_ReadString(const TCHAR* path, const char* section, const char* key, char* value);
7uint16_t ini_ReadInteger(const TCHAR* path, const char* section, const char* key, uint16_t Defvalue, uint8_t radix);
8_Bool ini_ReadKeyValue(const TCHAR* path, const char* section, const char* key, uint16_t *ValueBuffer);
9//uint16_t ini_geth(const TCHAR* path, const char* section, const char* key, uint16_t Defvalue);
10
11#endif /* __INI_H */
Note: See TracBrowser for help on using the repository browser.