Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/llfio/v2.0/detail/impl/windows/import.hpp')
-rw-r--r--include/llfio/v2.0/detail/impl/windows/import.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/llfio/v2.0/detail/impl/windows/import.hpp b/include/llfio/v2.0/detail/impl/windows/import.hpp
index c7ccf165..6d22daab 100644
--- a/include/llfio/v2.0/detail/impl/windows/import.hpp
+++ b/include/llfio/v2.0/detail/impl/windows/import.hpp
@@ -54,8 +54,11 @@ Distributed under the Boost Software License, Version 1.0.
#if !LLFIO_EXPERIMENTAL_STATUS_CODE
// Bring in the custom NT kernel error code category
#if LLFIO_HEADERS_ONLY
-#define NTKERNEL_ERROR_CATEGORY_INLINE
-#define NTKERNEL_ERROR_CATEGORY_STATIC
+#if !defined(NTKERNEL_ERROR_CATEGORY_INLINE)
+#pragma message("WARNING: LLFIO_HEADERS_ONLY=1, LLFIO_EXPERIMENTAL_STATUS_CODE=0 and NTKERNEL_ERROR_CATEGORY_INLINE=1 on Windows, this can produce unreliable binaries where semantic comparisons of error codes randomly fail!")
+#define NTKERNEL_ERROR_CATEGORY_INLINE 1 // BOLD!
+#define NTKERNEL_ERROR_CATEGORY_STATIC 1
+#endif
#endif
#include "../../../../ntkernel-error-category/include/ntkernel_category.hpp"
#endif