Files
amiwm-neo/kbdmodule.h

25 lines
503 B
C
Raw Normal View History

#define ERRORTOKEN 257
#define META 258
#define MODIFIER 259
#define WHEREABOUTS 260
#define COLON 261
#define BAR 262
#define KEYSYM 263
#define FUNCTION 264
#ifdef YYSTYPE
#undef YYSTYPE_IS_DECLARED
#define YYSTYPE_IS_DECLARED 1
2017-03-26 13:00:19 +02:00
#endif
#ifndef YYSTYPE_IS_DECLARED
#define YYSTYPE_IS_DECLARED 1
typedef union
2017-03-26 13:00:19 +02:00
{
int num;
char *ptr;
KeySym keysym;
struct { unsigned int mods; int meta; } modifiers;
void (*function)(Window);
} YYSTYPE;
#endif /* !YYSTYPE_IS_DECLARED */
2017-03-26 13:00:19 +02:00
extern YYSTYPE yylval;