Merge pull request #443 from negativeExponent/add-header-guards
[pcsx_rearmed.git] / include / psemu_plugin_defs.h
index b40c77c..545cfca 100644 (file)
@@ -5,8 +5,6 @@
 extern "C" {
 #endif
 
-#include <stdint.h>
-
 // header version
 #define _PPDK_HEADER_VERSION           3
 
@@ -155,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
@@ -193,9 +193,15 @@ 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
+       //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;
 
@@ -207,11 +213,15 @@ typedef struct
        // values are in range -128 - 127
        unsigned char moveX, moveY;
 
-    uint8_t Vib[2];
-
-    volatile uint8_t VibF[2];
-
-    unsigned char reserved[87];
+       unsigned char Vib[2];
+       unsigned char VibF[2];
+       
+       //configuration mode Request 0x43
+       int configMode;
+       unsigned char reserved[87];
+       
+       //Lightgun values 
+       int absoluteX,absoluteY;
 
 } PadDataS;