Merge https://github.com/notaz/pcsx_rearmed
[pcsx_rearmed.git] / include / psemu_plugin_defs.h
index 7232d03..6fc59b7 100644 (file)
@@ -153,6 +153,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,13 +193,14 @@ typedef struct
 
 typedef struct
 {
-       // controler type - fill it withe predefined values above
+       // controller type - fill it withe predefined values above
        unsigned char controllerType;
 
-       //0 : No multitap between psx and pad
+       //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;
 
        // status of buttons - every controller fills this field
        unsigned short buttonStatus;
@@ -212,7 +215,9 @@ typedef struct
 
        unsigned char Vib[2];
        unsigned char VibF[2];
-
+       
+       //configuration mode Request 0x43
+       int configMode;
        unsigned char reserved[87];
 
 } PadDataS;