diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-04-27 17:44:54 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-04-27 17:44:54 +0300 |
commit | 952970cc2a18a603e0bdccdc1f907b73da7eb4f4 (patch) | |
tree | f530b23fd873bbb87f6eed280322044b88b8cb51 /utils/libsimple/src | |
parent | *.bat: usage message updates (diff) | |
download | windows7-drivers-952970cc2a18a603e0bdccdc1f907b73da7eb4f4.tar.gz windows7-drivers-952970cc2a18a603e0bdccdc1f907b73da7eb4f4.zip |
test -> simple
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); } |