1
0
mirror of https://github.com/raphnet/gc_n64_usb-v3 synced 2024-08-13 17:03:49 -04:00
gc_n64_usb-v3/mappings.h

17 lines
282 B
C
Raw Normal View History

2015-08-22 00:44:51 -04:00
#ifndef _mappings_h__
#define _mappings_h__
#include <stdint.h>
struct mapping {
uint16_t ctl_btn;
uint16_t usb_btn;
};
#define MAPPING_GAMECUBE_DEFAULT 0x00
#define MAPPING_N64_DEFAULT 0x10
uint16_t mappings_do(uint8_t mapping_id, uint16_t input);
#endif // _mappings_h__