Author: hbelusca
Date: Sun Jan  6 23:50:52 2013
New Revision: 58137

URL: http://svn.reactos.org/svn/reactos?rev=58137&view=rev
Log:
[REACTOS]
I hope this solution will work *sigh*

Modified:
    trunk/reactos/include/reactos/debug.h

Modified: trunk/reactos/include/reactos/debug.h
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/debug.h?rev=58137&r1=58136&r2=58137&view=diff
==============================================================================
--- trunk/reactos/include/reactos/debug.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/debug.h [iso-8859-1] Sun Jan  6 23:50:52 2013
@@ -51,16 +51,18 @@
     PCHAR Message
 );
 
-#ifndef _NTDEF_ /* Guard against redefinition from ntdef.h */
-    #define __BCRYPT_H__ /* Hack for NDK - umtypes.h */
-    typedef _Return_type_success_(return >= 0) LONG NTSTATUS, *PNTSTATUS;
-#endif
+/*
+ * This is the definition of NTSTATUS, but renamed
+ * in order not to conflict with other ones.
+ */
+typedef _Return_type_success_(return >= 0) LONG DEBUG_NTSTATUS;
+
 __analysis_noreturn
 NTSYSAPI
 VOID
 NTAPI
 RtlRaiseStatus(
-    _In_ NTSTATUS Status
+    _In_ DEBUG_NTSTATUS Status
 );
 
 #endif /* !defined(_RTLFUNCS_H) && !defined(_NTDDK_) */


Reply via email to