bygfoot/src/option_struct.h

20 lines
353 B
C
Raw Normal View History

2005-03-23 20:09:02 +01:00
#ifndef OPTION_STRUCT_H
#define OPTION_STRUCT_H
2005-04-04 12:36:04 +02:00
/** A struct representing an option or a constant. */
typedef struct
{
GString *name, *string_value;
gint value;
} Option;
2005-03-23 20:09:02 +01:00
/** An array of name-value pairs with an associated keyed data list for
quick access. */
typedef struct
{
GArray *list;
GData *datalist;
} OptionList;
#endif