mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-12-04 08:14:14 +01:00
22 lines
254 B
C
22 lines
254 B
C
/**
|
|
* @file usb_comm.h
|
|
* @brief USB communication subsystem
|
|
* @ingroup menu
|
|
*/
|
|
|
|
#ifndef USB_COMM_H__
|
|
#define USB_COMM_H__
|
|
|
|
|
|
#include "menu_state.h"
|
|
|
|
|
|
#ifndef NDEBUG
|
|
void usb_comm_poll (menu_t *menu);
|
|
#else
|
|
#define usb_comm_poll(menu)
|
|
#endif
|
|
|
|
|
|
#endif
|