diff options
Diffstat (limited to '')
-rw-r--r-- | utils/libsimple/src/device.cpp (renamed from utils/libtest/src/device.cpp) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/libtest/src/device.cpp b/utils/libsimple/src/device.cpp index f06a22a..57e6963 100644 --- a/utils/libtest/src/device.cpp +++ b/utils/libsimple/src/device.cpp @@ -3,17 +3,17 @@ // For details, see https://github.com/egor-tensin/windows7-drivers. // Distributed under the MIT License. -#include "libtest/all.hpp" +#include "libsimple/all.hpp" #include "libservice/all.hpp" #include <Windows.h> -namespace libtest +namespace libsimple { namespace { - const char* const device_path = "\\\\.\\test_device1"; + const char* const device_path = "\\\\.\\simple_device1"; const auto exchange_ints_ctl_code = CTL_CODE(0x8001, 0x800, METHOD_BUFFERED, FILE_ANY_ACCESS); } |