diff options
| author | a1xd <[email protected]> | 2021-01-14 12:27:42 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-14 12:27:42 -0500 |
| commit | 9ea8b4b94bba795eb5060b376baa8e5169e80272 (patch) | |
| tree | 493bfaeb2b59b7db452c52e9ec9713e8b8296510 /driver/driver.h | |
| parent | Merge pull request #53 from termhn/patch-1 (diff) | |
| parent | filter raw input based on id (diff) | |
| download | rawaccel-9ea8b4b94bba795eb5060b376baa8e5169e80272.tar.xz rawaccel-9ea8b4b94bba795eb5060b376baa8e5169e80272.zip | |
Merge pull request #59 from aroidzap/apply-for-specific-device-gui
(GUI) Apply RawAccel only for specific device
Diffstat (limited to 'driver/driver.h')
| -rw-r--r-- | driver/driver.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/driver/driver.h b/driver/driver.h index 8554f8c..a0381fb 100644 --- a/driver/driver.h +++ b/driver/driver.h @@ -4,7 +4,7 @@ #include <kbdmou.h> #include <wdf.h> -#include "vec2.h" +#include "rawaccel-settings.h" #if DBG #define DebugPrint(_x_) DbgPrint _x_ @@ -21,6 +21,7 @@ typedef struct _DEVICE_EXTENSION { counter_t counter; vec2d carry; CONNECT_DATA UpperConnectData; + WCHAR dev_id[MAX_DEV_ID_LEN]; } DEVICE_EXTENSION, *PDEVICE_EXTENSION; WDF_DECLARE_CONTEXT_TYPE_WITH_NAME(DEVICE_EXTENSION, FilterGetData) |