mirror of
https://github.com/Maschell/hid_to_vpad.git
synced 2024-11-10 01:15:06 +01:00
aa421146c7
Changelog: - Reaaaaaally a lot of things internally. Rewrote the many parts of the controller_patcher engine. - Added a nice GUI! DarkIrata did a great job at creating the graphics. - Finally fixed the DS3 bug in a official build (sorry for the delay) - Controller can also be used to emulate Pro Controller - Input preview/tester - Supporting even more controller via the network client (e.g Xbox 360, Xbox one, the new DS4,Switch Pro Controller etc.). Big shoutout @QuarkTheAwesome who helped me there! - Added support for DS3 Rumble (thanks @skid_au) - GC-Adapter rumble fixed. - Support for all slots of deviced with multiple slots (like https://github.com/Maschell/controller_patcher_configs/blob/master/DualShock2.ini) - Hopefully reduced the random crashes. - Probably some stuff I already forgot.
25 lines
384 B
C
25 lines
384 B
C
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
#include "common/types.h"
|
|
#include "dynamic_libs/os_functions.h"
|
|
|
|
/* Main */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//! C wrapper for our C++ functions
|
|
int Menu_Main(void);
|
|
void deInit(void);
|
|
void ApplyPatches(void);
|
|
void RestorePatches(void);
|
|
|
|
int isInMiiMakerHBL();
|
|
void SplashScreen(int time,char * message);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|