mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-26 03:39:58 -07:00
15 lines
373 B
C
15 lines
373 B
C
#ifndef WII_ANAL_EC_H_
|
|
#define WII_ANAL_EC_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
//============================================================================= ========================================
|
|
// Function prototypes
|
|
//
|
|
typedef struct eventMsg eventMsg_t;
|
|
typedef struct state state_t;
|
|
|
|
bool evWiiEC(const eventMsg_t* const msg, state_t* const state);
|
|
|
|
#endif //WII_ANAL_EC_H_
|