aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um/service/include/libservice/common.hpp
diff options
context:
space:
mode:
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()