diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-01 15:39:00 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-01 15:39:00 +0300 |
commit | 2293d0875ee3bb27b923d51550ff4ba4bf2b9669 (patch) | |
tree | 275efbfacceae4c40d47b749c1563e761a65c03f /um/service/src | |
parent | service: code style (diff) | |
download | windows7-drivers-2293d0875ee3bb27b923d51550ff4ba4bf2b9669.tar.gz windows7-drivers-2293d0875ee3bb27b923d51550ff4ba4bf2b9669.zip |
um: strip the 'lib' prefix from include/ dirs
Diffstat (limited to 'um/service/src')
-rw-r--r-- | um/service/src/device.cpp | 2 | ||||
-rw-r--r-- | um/service/src/service.cpp | 2 | ||||
-rw-r--r-- | um/service/src/service_manager.cpp | 2 | ||||
-rw-r--r-- | um/service/src/windows_error.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/um/service/src/device.cpp b/um/service/src/device.cpp index f1ecccb..a6333c7 100644 --- a/um/service/src/device.cpp +++ b/um/service/src/device.cpp @@ -3,7 +3,7 @@ // For details, see https://github.com/egor-tensin/windows7-drivers. // Distributed under the MIT License. -#include "libservice/all.hpp" +#include "service/all.hpp" #include <Windows.h> diff --git a/um/service/src/service.cpp b/um/service/src/service.cpp index 1cdfe71..f45436a 100644 --- a/um/service/src/service.cpp +++ b/um/service/src/service.cpp @@ -3,7 +3,7 @@ // For details, see https://github.com/egor-tensin/windows7-drivers. // Distributed under the MIT License. -#include "libservice/all.hpp" +#include "service/all.hpp" #include <Windows.h> diff --git a/um/service/src/service_manager.cpp b/um/service/src/service_manager.cpp index 530976c..96e0f75 100644 --- a/um/service/src/service_manager.cpp +++ b/um/service/src/service_manager.cpp @@ -3,7 +3,7 @@ // For details, see https://github.com/egor-tensin/windows7-drivers. // Distributed under the MIT License. -#include "libservice/all.hpp" +#include "service/all.hpp" #include <Windows.h> diff --git a/um/service/src/windows_error.cpp b/um/service/src/windows_error.cpp index f27018b..90ebd7c 100644 --- a/um/service/src/windows_error.cpp +++ b/um/service/src/windows_error.cpp @@ -3,7 +3,7 @@ // For details, see https://github.com/egor-tensin/windows7-drivers. // Distributed under the MIT License. -#include "libservice/all.hpp" +#include "service/all.hpp" #include <Windows.h> |