
Former-commit-id: 54638fc7623ec0485109b0b5879144f8f2514213 Former-commit-id: 23f43cd31169d95df12ae1c207d9fd1c924d26b1
17 lines
252 B
C
17 lines
252 B
C
#ifndef enumopts_h
|
|
#define enumopts_h
|
|
|
|
struct EnumOpt
|
|
{
|
|
const char *pstrOpt;
|
|
int iValue;
|
|
};
|
|
|
|
#define s(t) extern EnumOpt t##_Opts[];
|
|
#define c(t, x) /* empty */
|
|
#define e(t) /* empty */
|
|
#include "enums.h"
|
|
|
|
|
|
#endif // enumopts_h
|