X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fpsemu_plugin_defs.h;h=d005d080c7df7004a7a2c2be3b0dadaad130e6a1;hb=ecfeb56f01924968a87128c515a4244999fc7d69;hp=5c2fefe17249ca64919da55927b325d9a0b340d3;hpb=52c9fcc88f6a908c359afbf12f821602c25df123;p=pcsx_rearmed.git diff --git a/include/psemu_plugin_defs.h b/include/psemu_plugin_defs.h index 5c2fefe1..d005d080 100644 --- a/include/psemu_plugin_defs.h +++ b/include/psemu_plugin_defs.h @@ -5,6 +5,10 @@ extern "C" { #endif +// this can't be __stdcall like it was in PSEmu API as too many functions are mixed up +#undef CALLBACK +#define CALLBACK + // header version #define _PPDK_HEADER_VERSION 3 @@ -137,7 +141,7 @@ typedef struct long PADquery(void); unsigned char PADstartPoll(int); - unsigned char PADpoll(unsigned char); + unsigned char PADpoll(unsigned char, int *); */ @@ -153,6 +157,8 @@ typedef struct +// No controller +#define PSE_PAD_TYPE_NONE 0 // MOUSE SCPH-1030 #define PSE_PAD_TYPE_MOUSE 1 // NEGCON - 16 button analog controller SLPH-00001 @@ -194,9 +200,6 @@ typedef struct // controller type - fill it withe predefined values above unsigned char controllerType; - //0 : no multitap between psx and pad - //1 : multitap between psx and pad on port 1 - //2 : multitap between psx and pad on port 2 int portMultitap; int requestPadIndex; @@ -215,8 +218,17 @@ typedef struct unsigned char VibF[2]; //configuration mode Request 0x43 - boolean configMode; - unsigned char reserved[87]; + int configMode; + + unsigned char txData[34]; + + unsigned char multitapLongModeEnabled; + unsigned char PadMode; // 0 : digital 1: analog + unsigned char cmd4dConfig[6]; + unsigned char reserved[46]; + + //Lightgun values + int absoluteX,absoluteY; } PadDataS;