aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um/service/include/libservice/windows_error.hpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-04-27 22:35:21 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-04-27 22:35:21 +0300
commit7be3d976a223220e8e48896a401ac7e56e40ce62 (patch)
tree4d39e948d5ccd65c27d6ce76120bbcbe33484061 /um/service/include/libservice/windows_error.hpp
parentmove WDK-version-specific stuff out of root README (diff)
downloadwindows7-drivers-7be3d976a223220e8e48896a401ac7e56e40ce62.tar.gz
windows7-drivers-7be3d976a223220e8e48896a401ac7e56e40ce62.zip
um: reorganize projects
* libservice -> service * libsimple -> wrappers/simple * libnt_path_converter -> wrappers/special/nt_path_converter
Diffstat (limited to 'um/service/include/libservice/windows_error.hpp')
-rw-r--r--um/service/include/libservice/windows_error.hpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/um/service/include/libservice/windows_error.hpp b/um/service/include/libservice/windows_error.hpp
new file mode 100644
index 0000000..f7ac90e
--- /dev/null
+++ b/um/service/include/libservice/windows_error.hpp
@@ -0,0 +1,31 @@
+// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "Windows 7 drivers" project.
+// For details, see https://github.com/egor-tensin/windows7-drivers.
+// Distributed under the MIT License.
+
+#pragma once
+
+#include "common.hpp"
+#include "singleton.hpp"
+
+#include <string>
+#include <system_error>
+
+namespace libservice
+{
+ class WindowsErrorCategory
+ : public std::error_category
+ , public Singleton<WindowsErrorCategory>
+ {
+ public:
+ const char* name() const LIBSERVICE_NOEXCEPT { return "Windows"; }
+
+ std::string message(int) const;
+
+ private:
+ friend class Singleton<WindowsErrorCategory>;
+ };
+}
+
+#define LIBSERVICE_ERROR_PREFIX \
+ "Error in function '" LIBSERVICE_FUNCTION_NAME "' at file '" LIBSERVICE_FILE_PATH "', line " LIBSERVICE_LINE_NUMBER_STRING