huangcm
2025-02-26 a813214788f6e7b512df54f1c659cd0bdc9ac175
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * drivers/input/touchscreen/ini.h
 *
 * FocalTech ft5x TouchScreen driver.
 *
 * Copyright (c) 2010  Focal tech Ltd.
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */
 
#ifndef INI_H
#define INI_H
 
#define MAX_CFG_BUF       512
#define SUCCESS                0
/* return value */
#define CFG_OK                          SUCCESS
#define CFG_SECTION_NOT_FOUND         -1
#define CFG_KEY_NOT_FOUND             -2
#define CFG_ERR                       -10
 
#define CFG_ERR_OPEN_FILE             -10
#define CFG_ERR_CREATE_FILE           -11
#define CFG_ERR_READ_FILE             -12
#define CFG_ERR_WRITE_FILE            -13
#define CFG_ERR_FILE_FORMAT           -14
 
 
#define CFG_ERR_EXCEED_BUF_SIZE       -22
 
#define COPYF_OK                      SUCCESS
#define COPYF_ERR_OPEN_FILE           -10
#define COPYF_ERR_CREATE_FILE         -11
#define COPYF_ERR_READ_FILE           -12
#define COPYF_ERR_WRITE_FILE          -13
 
 
struct ini_key_location {
   int ini_section_line_no;
   int ini_key_line_no;
   int ini_key_lines;
};
 
 
int ini_get_key(char *filedata, char * section, char * key, char * value);
int ini_get_sections(char *filedata, unsigned char * sections[], int max);
 
int  ini_split_section(char *section, char **name, char **index);
//int  ini_join_section(char **section, char *name, char *index);
 
int atoi(char *nptr);
 
#endif