diff options
| author | a1xd <[email protected]> | 2020-07-31 17:56:46 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-07-31 17:56:46 -0400 |
| commit | 1fcbb0fa51dbc35958d211026e4d40384a049049 (patch) | |
| tree | efb65bf3f305f376ea75f4f687b08bf8998c020f /console/console_write.hpp | |
| parent | Merge pull request #6 from a1xd/st-refactor (diff) | |
| parent | Show no settings for off, remove unused class for PR (diff) | |
| download | rawaccel-1fcbb0fa51dbc35958d211026e4d40384a049049.tar.xz rawaccel-1fcbb0fa51dbc35958d211026e4d40384a049049.zip | |
Merge pull request #7 from JacobPalecki/GUI
Add GUI
Diffstat (limited to 'console/console_write.hpp')
| -rw-r--r-- | console/console_write.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/console/console_write.hpp b/console/console_write.hpp new file mode 100644 index 0000000..31eb575 --- /dev/null +++ b/console/console_write.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include <iostream> + +#define NOMINMAX +#include <Windows.h> + +#include "..\common\rawaccel.hpp" + +#define RA_WRITE CTL_CODE(0x8888, 0x888, METHOD_BUFFERED, FILE_ANY_ACCESS) + +namespace ra = rawaccel; + +void write(ra::mouse_modifier vars);
\ No newline at end of file |