X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fpsemu_plugin_defs.h;h=40a67605bf9334f16409b937df4d55d6c1e9734f;hb=0890ae159b413fa4a5c84c0db1bf7e2eb05f4849;hp=9986654064fc34f626844b098ec63cf88a5fedb9;hpb=d71c709541218f67ab32229b03307b045a8ed6cb;p=pcsx_rearmed.git diff --git a/include/psemu_plugin_defs.h b/include/psemu_plugin_defs.h index 99866540..40a67605 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 @@ -191,9 +197,12 @@ typedef struct typedef struct { - // controler type - fill it withe predefined values above + // controller type - fill it withe predefined values above unsigned char controllerType; + int portMultitap; + int requestPadIndex; + // status of buttons - every controller fills this field unsigned short buttonStatus; @@ -207,8 +216,18 @@ typedef struct unsigned char Vib[2]; unsigned char VibF[2]; - - unsigned char reserved[87]; + + //configuration mode Request 0x43 + int configMode; + + unsigned char txData[34]; + + unsigned char multitapLongModeEnabled; + unsigned char PadMode; // 0 : digital 1: analog + unsigned char reserved[52]; + + //Lightgun values + int absoluteX,absoluteY; } PadDataS;