binana/3.3.5a/include/event/keydown.h

16 lines
No EOL
235 B
C

#ifndef EVENT_KEY_DOWN_H
#define EVENT_KEY_DOWN_H
#include "storm/list.h"
#include "event/types.h"
typedef struct EvtKeyDown EvtKeyDown;
STORM_TS_LIST(EvtKeyDown);
struct EvtKeyDown {
TSLink_EvtKeyDown link;
KEY key;
};
#endif