wii_ec_udraw.h 496 B

123456789101112131415161718
  1. #ifndef WII_EC_UDRAW_H_
  2. #define WII_EC_UDRAW_H_
  3. #include <stdint.h>
  4. #include <stdbool.h>
  5. //============================================================================= =======================================
  6. // Function prototypes
  7. //
  8. typedef struct wiiEC wiiEC_t;
  9. typedef enum ecCalib ecCalib_t;
  10. typedef struct eventMsg eventMsg_t;
  11. typedef struct state state_t;
  12. bool udraw_init(wiiEC_t* const pec);
  13. bool udraw_key(const eventMsg_t* const msg, state_t* const state);
  14. #endif //WII_EC_UDRAW_H_