mirror of
https://github.com/Maschell/controller_patcher.git
synced 2024-11-21 19:49:16 +01:00
24 lines
517 B
C
24 lines
517 B
C
#ifndef _CONTROLLER_PATCHER_WRAPPER_H_
|
|
#define _CONTROLLER_PATCHER_WRAPPER_H_
|
|
|
|
#include "wiiu/vpad.h"
|
|
|
|
/* Main */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "./patcher/ControllerPatcherDefs.h"
|
|
|
|
//! C wrapper for our C++ functions
|
|
void ControllerPatcherInit(void);
|
|
void ControllerPatcherDeInit(void);
|
|
CONTROLLER_PATCHER_RESULT_OR_ERROR setControllerDataFromHID(VPADStatus * data);
|
|
CONTROLLER_PATCHER_RESULT_OR_ERROR gettingInputAllDevices(InputData * output,s32 array_size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|