-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
61 lines (49 loc) · 1.67 KB
/
config.h
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
/*
* =====================================================================================
*
* Filename: config.h
*
* Description:
*
* Version: 1.0
* Created: 07/21/2011 04:54:43 PM
* Revision: none
* Compiler: gcc
*
* Author: kangle.wang (mn), [email protected]
* Company: APE-TECH
*
* =====================================================================================
*/
#ifndef _CONFIG_H
#define _CONFIG_H
#include <spdPostStorage.h>
typedef struct _G_CONFIG G_CONFIG;
/*定义结构体*/
struct _G_CONFIG
/*-----------------------------------------------------------------------------
* \brief 数据库结构
*-----------------------------------------------------------------------------*/
{
spdPostStorage* p_stu_spd;
char *op;
};
void
start_CONFIG ( );
/*-----------------------------------------------------------------------------
* \brief 初始化数据库
* \param[in]
* \param[out] G
* \return
* \free free_CONFIG()
*-----------------------------------------------------------------------------*/
void
free_CONFIG ( );
/*-----------------------------------------------------------------------------
* \brief 删除数据库
* \param[in] G
* \param[out]
* \return
* \free
*-----------------------------------------------------------------------------*/
#endif