aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um/service/include/libservice/common.hpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-05-01 15:39:00 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-05-01 15:39:00 +0300
commit2293d0875ee3bb27b923d51550ff4ba4bf2b9669 (patch)
tree275efbfacceae4c40d47b749c1563e761a65c03f /um/service/include/libservice/common.hpp
parentservice: code style (diff)
downloadwindows7-drivers-2293d0875ee3bb27b923d51550ff4ba4bf2b9669.tar.gz
windows7-drivers-2293d0875ee3bb27b923d51550ff4ba4bf2b9669.zip
um: strip the 'lib' prefix from include/ dirs
Diffstat (limited to 'um/service/include/libservice/common.hpp')
-rw-r--r--um/service/include/libservice/common.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/um/service/include/libservice/common.hpp b/um/service/include/libservice/common.hpp
deleted file mode 100644
index a1c46fb..0000000
--- a/um/service/include/libservice/common.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-// 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
-
-#define LIBSERVICE_FILE_PATH __FILE__
-#define LIBSERVICE_LINE_NUMBER __LINE__
-#define LIBSERVICE_FUNCTION_NAME __FUNCTION__
-
-#define LIBSERVICE_TO_STRING(s) LIBSERVICE_TO_STRING_(s)
-#define LIBSERVICE_TO_STRING_(s) #s
-
-#define LIBSERVICE_LINE_NUMBER_STRING LIBSERVICE_TO_STRING(LIBSERVICE_LINE_NUMBER)
-
-#define LIBSERVICE_NOEXCEPT throw()