summaryrefslogtreecommitdiff
path: root/driver/driver.h
diff options
context:
space:
mode:
authora1xd <[email protected]>2021-09-06 19:11:47 -0400
committera1xd <[email protected]>2021-09-23 22:28:44 -0400
commit8680805b267bf5280b8f446ed33ef07981ea5475 (patch)
treeccf8f2cd368a5f6d1d87fb23934218946ff6e388 /driver/driver.h
parentchange lookup impl to use binary search (diff)
downloadrawaccel-8680805b267bf5280b8f446ed33ef07981ea5475.tar.xz
rawaccel-8680805b267bf5280b8f446ed33ef07981ea5475.zip
make profile count dynamic (unlimited)
Diffstat (limited to 'driver/driver.h')
-rw-r--r--driver/driver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/driver.h b/driver/driver.h
index 4818367..d8b3162 100644
--- a/driver/driver.h
+++ b/driver/driver.h
@@ -25,10 +25,10 @@ typedef struct _DEVICE_EXTENSION {
double dpi_factor;
counter_t counter;
ra::time_clamp clamp;
- ra::driver_settings* drv_ptr;
- ra::modifier* mod_ptr;
+ ra::modifier mod;
vec2d carry;
CONNECT_DATA UpperConnectData;
+ ra::driver_settings drv_settings;
WCHAR dev_id[ra::MAX_DEV_ID_LEN];
} DEVICE_EXTENSION, *PDEVICE_EXTENSION;