Main Page | Modules | Data Structures | Directories | File List | Data Fields | Globals | Related Pages

cfg_files.h

Go to the documentation of this file.
00001 
00013 /* cfg_files.h : config files parser - header
00014  * $Id: cfg_files.h 1 2006-01-13 22:47:50Z MagicalTux $
00015  * Made by MagicalTux
00016  */
00017 
00018 #ifndef OA_CFG_FILES_H
00019 #define OA_CFG_FILES_H
00020 
00021 /*
00022  * TODO: Make this enum.
00023  */
00024 
00025 #define CONF_VAR_CHAR 0
00026 #define CONF_VAR_SHORT 1
00027 #define CONF_VAR_INT 2
00028 #define CONF_VAR_STRING 3
00029 #define CONF_VAR_CALLBACK 4
00030 
00031 #define CONF_OK 0
00032 #define CONF_ERROR 1
00033 
00037 struct conf_entry {
00038         char *param_name;       
00039         void *save_pointer;     
00040         int min_limit;          
00041         int max_limit;          
00042         char type;              
00043 }
00044 
00047 #endif // OA_CFG_FILES_H
00048 

Generated on Fri Apr 28 10:20:04 2006 for OpenAthena by  doxygen 1.4.4