diff --git a/sys/BusFdoPdoCommon.hpp b/sys/BusFdoPdoCommon.hpp deleted file mode 100644 index 02f5b80..0000000 --- a/sys/BusFdoPdoCommon.hpp +++ /dev/null @@ -1,49 +0,0 @@ -#pragma once - -#include -#include -#include - -// -// Used to identify children in the device list of the bus. -// -typedef struct _PDO_IDENTIFICATION_DESCRIPTION -{ - WDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER Header; // should contain this header - - // - // Unique serial number of the device on the bus - // - ULONG SerialNo; - - // - // PID of the process creating this PDO - // - DWORD OwnerProcessId; - - // - // Device type this PDO is emulating - // - VIGEM_TARGET_TYPE TargetType; - - // - // If set, the vendor ID the emulated device is reporting - // - USHORT VendorId; - - // - // If set, the product ID the emulated device is reporting - // - USHORT ProductId; - - // - // Is the current device owner another driver? - // - BOOLEAN OwnerIsDriver; - - // - // SessionId associated with file handle. Used to map file handles to emulated gamepad devices - // - LONG SessionId; - -} PDO_IDENTIFICATION_DESCRIPTION, * PPDO_IDENTIFICATION_DESCRIPTION; diff --git a/sys/Ds4Pdo.cpp b/sys/Ds4Pdo.cpp index a270253..bf34389 100644 --- a/sys/Ds4Pdo.cpp +++ b/sys/Ds4Pdo.cpp @@ -5,7 +5,6 @@ #include #include -#include "Ds4.h" PCWSTR ViGEm::Bus::Targets::EmulationTargetDS4::_deviceDescription = L"Virtual DualShock 4 Controller"; diff --git a/sys/ViGEmBus.vcxproj b/sys/ViGEmBus.vcxproj index 9ccba7b..dcafc77 100644 --- a/sys/ViGEmBus.vcxproj +++ b/sys/ViGEmBus.vcxproj @@ -188,7 +188,6 @@ - diff --git a/sys/ViGEmBus.vcxproj.filters b/sys/ViGEmBus.vcxproj.filters index 035b890..10e2f03 100644 --- a/sys/ViGEmBus.vcxproj.filters +++ b/sys/ViGEmBus.vcxproj.filters @@ -84,9 +84,6 @@ Header Files\Targets - - Header Files - diff --git a/sys/XusbPdo.hpp b/sys/XusbPdo.hpp index 3606e81..263ae8f 100644 --- a/sys/XusbPdo.hpp +++ b/sys/XusbPdo.hpp @@ -1,7 +1,6 @@ #pragma once #include "EmulationTargetPDO.hpp" -#include namespace ViGEm::Bus::Targets {