server/core/src/util/variant.h
Enno Rehling 89649844f6 core is now part of the server
simplifying git repository structure
2013-05-11 13:02:21 -07:00

25 lines
405 B
C

#ifndef STRUCT_VARIANT_H
#define STRUCT_VARIANT_H
#ifdef __cplusplus
extern "C" {
#endif
typedef union variant {
void *v;
int i;
char c;
short s;
short sa[2];
char ca[4];
float f;
} variant;
typedef enum variant_type {
VAR_NONE, VAR_INT, VAR_VOIDPTR, VAR_CHAR, VAR_SHORT, VAR_SHORTA, VAR_CHARA,
VAR_FLOAT
} variant_type;
#ifdef __cplusplus
}
#endif
#endif