X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fpsemu_plugin_defs.h;h=8645eab7bf6027480c74530777028f0b0fd008a6;hb=1b591888c4aec568da64ea2897e9ad8bbf33cea1;hp=034f21b4e03b7eaf7348827d7b25acf532e5f75c;hpb=05311a18fb23799776f9552614ef4c5fb5d852fa;p=pcsx_rearmed.git diff --git a/include/psemu_plugin_defs.h b/include/psemu_plugin_defs.h index 034f21b4..8645eab7 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 @@ -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 @@ -198,6 +204,7 @@ typedef struct //1 : multitap between psx and pad on port 1 //2 : multitap between psx and pad on port 2 int portMultitap; + int requestPadIndex; // status of buttons - every controller fills this field unsigned short buttonStatus; @@ -212,8 +219,15 @@ typedef struct unsigned char Vib[2]; unsigned char VibF[2]; - - unsigned char reserved[87]; + + //configuration mode Request 0x43 + int configMode; + + unsigned char txData[32]; + unsigned char reserved[56]; + + //Lightgun values + int absoluteX,absoluteY; } PadDataS;