/****************************************************************************
Module
CheckJoystickEvents.h
Description
header file for the event checking functions
Notes
History
When Who What/Why
-------------- --- --------
10/18/15 11:50 jec added #include for stdint & stdbool
08/06/13 14:37 jec started coding
*****************************************************************************/
#ifndef CheckJoystickEvents_H
#define CheckJoystickEvents_H
// the common headers for C99 types
#include <stdint.h>
#include <stdbool.h>
// prototypes for event checkers
bool CheckJoystickEvents(void);
#endif /* EventCheckers_H */