libgoatvr
view src/opt.h @ 7:6896f9cf9621
- configure now emits config.status with the current confure invocation
- now vr_init will heed the VR_MODULE env var for the name of the module to use
- more stuff on the openhmd module
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Fri, 19 Sep 2014 15:16:51 +0300 |
parents | |
children | 437fe32ac633 |
line source
1 #ifndef OPT_H_
2 #define OPT_H_
4 enum opt_type { OTYPE_INT, OTYPE_FLOAT };
6 struct option {
7 enum opt_type type;
8 int ival;
9 float fval;
10 };
12 void *create_options(void);
13 void destroy_options(void *optdb);
15 void set_option_int(void *optdb, const char *key, int val);
16 void set_option_float(void *optdb, const char *key, float val);
18 int get_option_int(void *optdb, const char *key, int *val);
19 int get_option_float(void *optdb, const char *key, float *val);
21 #endif /* OPT_H_ */