aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um
diff options
context:
space:
mode:
Diffstat (limited to 'um')
-rw-r--r--um/service/include/service/all.hpp (renamed from um/service/include/libservice/all.hpp)0
-rw-r--r--um/service/include/service/common.hpp (renamed from um/service/include/libservice/common.hpp)0
-rw-r--r--um/service/include/service/device.hpp (renamed from um/service/include/libservice/device.hpp)0
-rw-r--r--um/service/include/service/handle.hpp (renamed from um/service/include/libservice/handle.hpp)0
-rw-r--r--um/service/include/service/service.hpp (renamed from um/service/include/libservice/service.hpp)0
-rw-r--r--um/service/include/service/service_handle.hpp (renamed from um/service/include/libservice/service_handle.hpp)0
-rw-r--r--um/service/include/service/service_manager.hpp (renamed from um/service/include/libservice/service_manager.hpp)0
-rw-r--r--um/service/include/service/singleton.hpp (renamed from um/service/include/libservice/singleton.hpp)0
-rw-r--r--um/service/include/service/windows_error.hpp (renamed from um/service/include/libservice/windows_error.hpp)0
-rw-r--r--um/service/src/device.cpp2
-rw-r--r--um/service/src/service.cpp2
-rw-r--r--um/service/src/service_manager.cpp2
-rw-r--r--um/service/src/windows_error.cpp2
-rw-r--r--um/service/test/windows_error.cpp2
-rw-r--r--um/service/utils/install_service.cpp2
-rw-r--r--um/service/utils/start_service.cpp2
-rw-r--r--um/service/utils/stop_service.cpp2
-rw-r--r--um/service/utils/uninstall_service.cpp2
-rw-r--r--um/wrappers/simple/include/simple/all.hpp (renamed from um/wrappers/simple/include/libsimple/all.hpp)0
-rw-r--r--um/wrappers/simple/include/simple/device.hpp (renamed from um/wrappers/simple/include/libsimple/device.hpp)2
-rw-r--r--um/wrappers/simple/src/device.cpp4
-rw-r--r--um/wrappers/simple/utils/exchange_ints.cpp2
-rw-r--r--um/wrappers/special/nt_namespace/include/nt_namespace/all.hpp (renamed from um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp)0
-rw-r--r--um/wrappers/special/nt_namespace/include/nt_namespace/device.hpp (renamed from um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp)2
-rw-r--r--um/wrappers/special/nt_namespace/src/device.cpp4
-rw-r--r--um/wrappers/special/nt_namespace/utils/convert_nt_path.cpp2
26 files changed, 17 insertions, 17 deletions
diff --git a/um/service/include/libservice/all.hpp b/um/service/include/service/all.hpp
index a5761e0..a5761e0 100644
--- a/um/service/include/libservice/all.hpp
+++ b/um/service/include/service/all.hpp
diff --git a/um/service/include/libservice/common.hpp b/um/service/include/service/common.hpp
index a1c46fb..a1c46fb 100644
--- a/um/service/include/libservice/common.hpp
+++ b/um/service/include/service/common.hpp
diff --git a/um/service/include/libservice/device.hpp b/um/service/include/service/device.hpp
index f61c59a..f61c59a 100644
--- a/um/service/include/libservice/device.hpp
+++ b/um/service/include/service/device.hpp
diff --git a/um/service/include/libservice/handle.hpp b/um/service/include/service/handle.hpp
index abd1d5a..abd1d5a 100644
--- a/um/service/include/libservice/handle.hpp
+++ b/um/service/include/service/handle.hpp
diff --git a/um/service/include/libservice/service.hpp b/um/service/include/service/service.hpp
index ca01ab4..ca01ab4 100644
--- a/um/service/include/libservice/service.hpp
+++ b/um/service/include/service/service.hpp
diff --git a/um/service/include/libservice/service_handle.hpp b/um/service/include/service/service_handle.hpp
index 52e37f4..52e37f4 100644
--- a/um/service/include/libservice/service_handle.hpp
+++ b/um/service/include/service/service_handle.hpp
diff --git a/um/service/include/libservice/service_manager.hpp b/um/service/include/service/service_manager.hpp
index 3d4fe3a..3d4fe3a 100644
--- a/um/service/include/libservice/service_manager.hpp
+++ b/um/service/include/service/service_manager.hpp
diff --git a/um/service/include/libservice/singleton.hpp b/um/service/include/service/singleton.hpp
index 1c7b1a7..1c7b1a7 100644
--- a/um/service/include/libservice/singleton.hpp
+++ b/um/service/include/service/singleton.hpp
diff --git a/um/service/include/libservice/windows_error.hpp b/um/service/include/service/windows_error.hpp
index 13d7f47..13d7f47 100644
--- a/um/service/include/libservice/windows_error.hpp
+++ b/um/service/include/service/windows_error.hpp
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>
diff --git a/um/service/test/windows_error.cpp b/um/service/test/windows_error.cpp
index b909670..019939b 100644
--- a/um/service/test/windows_error.cpp
+++ b/um/service/test/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>
diff --git a/um/service/utils/install_service.cpp b/um/service/utils/install_service.cpp
index f36af75..aed0ae1 100644
--- a/um/service/utils/install_service.cpp
+++ b/um/service/utils/install_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 <exception>
#include <iostream>
diff --git a/um/service/utils/start_service.cpp b/um/service/utils/start_service.cpp
index fafee53..7f23fd4 100644
--- a/um/service/utils/start_service.cpp
+++ b/um/service/utils/start_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 <exception>
#include <iostream>
diff --git a/um/service/utils/stop_service.cpp b/um/service/utils/stop_service.cpp
index 800c7a9..0f11878 100644
--- a/um/service/utils/stop_service.cpp
+++ b/um/service/utils/stop_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 <exception>
#include <iostream>
diff --git a/um/service/utils/uninstall_service.cpp b/um/service/utils/uninstall_service.cpp
index 395bb51..58a879c 100644
--- a/um/service/utils/uninstall_service.cpp
+++ b/um/service/utils/uninstall_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 <exception>
#include <iostream>
diff --git a/um/wrappers/simple/include/libsimple/all.hpp b/um/wrappers/simple/include/simple/all.hpp
index 474b802..474b802 100644
--- a/um/wrappers/simple/include/libsimple/all.hpp
+++ b/um/wrappers/simple/include/simple/all.hpp
diff --git a/um/wrappers/simple/include/libsimple/device.hpp b/um/wrappers/simple/include/simple/device.hpp
index 3318818..d8bdaad 100644
--- a/um/wrappers/simple/include/libsimple/device.hpp
+++ b/um/wrappers/simple/include/simple/device.hpp
@@ -5,7 +5,7 @@
#pragma once
-#include "libservice/all.hpp"
+#include "service/all.hpp"
namespace libsimple
{
diff --git a/um/wrappers/simple/src/device.cpp b/um/wrappers/simple/src/device.cpp
index 2d49ff3..7aeef96 100644
--- a/um/wrappers/simple/src/device.cpp
+++ b/um/wrappers/simple/src/device.cpp
@@ -3,9 +3,9 @@
// For details, see https://github.com/egor-tensin/windows7-drivers.
// Distributed under the MIT License.
-#include "libsimple/all.hpp"
+#include "simple/all.hpp"
-#include "libservice/all.hpp"
+#include "service/all.hpp"
#include <Windows.h>
diff --git a/um/wrappers/simple/utils/exchange_ints.cpp b/um/wrappers/simple/utils/exchange_ints.cpp
index 0b06ad6..bc210a6 100644
--- a/um/wrappers/simple/utils/exchange_ints.cpp
+++ b/um/wrappers/simple/utils/exchange_ints.cpp
@@ -3,7 +3,7 @@
// For details, see https://github.com/egor-tensin/windows7-drivers.
// Distributed under the MIT License.
-#include "libsimple/all.hpp"
+#include "simple/all.hpp"
#include <exception>
#include <iostream>
diff --git a/um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp b/um/wrappers/special/nt_namespace/include/nt_namespace/all.hpp
index 474b802..474b802 100644
--- a/um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp
+++ b/um/wrappers/special/nt_namespace/include/nt_namespace/all.hpp
diff --git a/um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp b/um/wrappers/special/nt_namespace/include/nt_namespace/device.hpp
index 775b707..793db4b 100644
--- a/um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp
+++ b/um/wrappers/special/nt_namespace/include/nt_namespace/device.hpp
@@ -5,7 +5,7 @@
#pragma once
-#include "libservice/all.hpp"
+#include "service/all.hpp"
#include <string>
diff --git a/um/wrappers/special/nt_namespace/src/device.cpp b/um/wrappers/special/nt_namespace/src/device.cpp
index 1187b1c..97b3886 100644
--- a/um/wrappers/special/nt_namespace/src/device.cpp
+++ b/um/wrappers/special/nt_namespace/src/device.cpp
@@ -3,9 +3,9 @@
// For details, see https://github.com/egor-tensin/windows7-drivers.
// Distributed under the MIT License.
-#include "libnt_namespace/device.hpp"
+#include "nt_namespace/device.hpp"
-#include "libservice/all.hpp"
+#include "service/all.hpp"
#include <Windows.h>
diff --git a/um/wrappers/special/nt_namespace/utils/convert_nt_path.cpp b/um/wrappers/special/nt_namespace/utils/convert_nt_path.cpp
index 5a77fed..1954bd1 100644
--- a/um/wrappers/special/nt_namespace/utils/convert_nt_path.cpp
+++ b/um/wrappers/special/nt_namespace/utils/convert_nt_path.cpp
@@ -3,7 +3,7 @@
// For details, see https://github.com/egor-tensin/windows7-drivers.
// Distributed under the MIT License.
-#include "libnt_namespace/all.hpp"
+#include "nt_namespace/all.hpp"
#include <exception>
#include <iostream>