1 #ifndef UAE_ENUM_H
2 #define UAE_ENUM_H
3 
4 /* Make C-style use of enums compatible with ints in C++: in C++ you cannot
5  * assign an enum value to an int */
6 
7 #define ENUMDECL enum
8 #define ENUMNAME(name) ; typedef int name ;
9 
10 #endif /* UAE_ENUM_H */
11