[PATCH v2 1/4] include: Fix DPFLTR_MASK value to 0x80000000.

Rémi Bernon rbernon at codeweavers.com
Thu Nov 19 03:25:20 CST 2020


This is most likely a typo from MSDN.

Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
---

v2: Use RtlRaiseException as the exception address, testing shows that
    the address on Windows varies, and is sometimes around DbgPrint or
    RtlRaiseException, but nothing matching exactly.

Supersedes: 196206-196209

 include/dpfilter.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/dpfilter.h b/include/dpfilter.h
index 5b09dc9c23c..deb8db3fc41 100644
--- a/include/dpfilter.h
+++ b/include/dpfilter.h
@@ -23,7 +23,7 @@
 #define DPFLTR_WARNING_LEVEL    1
 #define DPFLTR_TRACE_LEVEL      2
 #define DPFLTR_INFO_LEVEL       3
-#define DPFLTR_MASK     0x8000000
+#define DPFLTR_MASK    0x80000000
 
 typedef enum _DPFLTR_TYPE
 {
-- 
2.29.2




More information about the wine-devel mailing list