plugin_event.h 215 B

12345678910111213
  1. #ifndef _TOTP_PLUGIN_EVENT_H_
  2. #define _TOTP_PLUGIN_EVENT_H_
  3. #include <inttypes.h>
  4. #include <input/input.h>
  5. #include "event_type.h"
  6. typedef struct {
  7. EventType type;
  8. InputEvent input;
  9. } PluginEvent;
  10. #endif