diff options
Diffstat (limited to 'console/console.cpp')
| -rw-r--r-- | console/console.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/console/console.cpp b/console/console.cpp index 549cb68..00dc481 100644 --- a/console/console.cpp +++ b/console/console.cpp @@ -1,14 +1,13 @@ #include <iostream> -#define NOMINMAX -#include <Windows.h> - #include <rawaccel-userspace.hpp> -#include "console_write.hpp" +#include <rawaccel-io.hpp> + +namespace ra = rawaccel; int main(int argc, char** argv) { try { - write(ra::parse(argc, argv)); + ra::write(ra::parse(argc, argv)); } catch (std::domain_error e) { std::cerr << e.what() << '\n'; |