ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/trunk/src/libopm/src/config.h
Revision: 5117
Committed: Thu Dec 25 15:18:54 2014 UTC (9 years, 3 months ago) by michael
Content type: text/x-chdr
File size: 410 byte(s)
Log Message:
- Fixed compile warnings

File Contents

# Content
1 #ifndef CONFIG_H
2 #define CONFIG_H
3
4 #include "libopm.h"
5
6 typedef struct _opm_config_hash OPM_CONFIG_HASH_T;
7
8 struct _opm_config_hash {
9 int key;
10 int type;
11 };
12
13 void libopm_config_free(OPM_CONFIG_T *);
14 void *libopm_config(OPM_CONFIG_T *, int);
15 int libopm_config_gettype(int);
16 OPM_CONFIG_T *libopm_config_create(void);
17 OPM_ERR_T libopm_config_set(OPM_CONFIG_T *, int , const void *);
18
19
20 #endif /* CONFIG_H */