[ros-diffs] [fireball] 23489: Fix DbgPrint / DbgPrintEx definitions to use PCCHAR instead of PCCH (recent WDK uses PCCHAR). This change fixes compiling.

fireball at svn.reactos.org fireball at svn.reactos.org
Sat Aug 5 22:57:37 CEST 2006


Author: fireball
Date: Sun Aug  6 00:57:36 2006
New Revision: 23489

URL: http://svn.reactos.org/svn/reactos?rev=23489&view=rev
Log:
Fix DbgPrint / DbgPrintEx definitions to use PCCHAR instead of PCCH (recent WDK uses PCCHAR).
This change fixes compiling.

Modified:
    trunk/reactos/include/ddk/winddk.h
    trunk/reactos/include/ndk/rtlfuncs.h
    trunk/reactos/include/reactos/debug.h

Modified: trunk/reactos/include/ddk/winddk.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/winddk.h?rev=23489&r1=23488&r2=23489&view=diff
==============================================================================
--- trunk/reactos/include/ddk/winddk.h (original)
+++ trunk/reactos/include/ddk/winddk.h Sun Aug  6 00:57:36 2006
@@ -10450,7 +10450,7 @@
 ULONG
 __cdecl
 DbgPrint(
-  IN PCCH  Format,
+  IN PCCHAR  Format,
   IN ...);
 
 ULONG
@@ -10458,7 +10458,7 @@
 DbgPrintEx(
   IN ULONG  ComponentId,
   IN ULONG  Level,
-  IN PCCH  Format,
+  IN PCCHAR  Format,
   IN ...);
 
 NTOSAPI

Modified: trunk/reactos/include/ndk/rtlfuncs.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ndk/rtlfuncs.h?rev=23489&r1=23488&r2=23489&view=diff
==============================================================================
--- trunk/reactos/include/ndk/rtlfuncs.h (original)
+++ trunk/reactos/include/ndk/rtlfuncs.h Sun Aug  6 00:57:36 2006
@@ -2454,7 +2454,7 @@
 ULONG
 __cdecl
 DbgPrint(
-    IN PCCH  Format,
+    IN PCCHAR  Format,
     IN ...
 );
 
@@ -2464,7 +2464,7 @@
 DbgPrintEx(
     IN ULONG ComponentId,
     IN ULONG Level,
-    IN PCCH Format,
+    IN PCCHAR Format,
     IN ...
 );
 

Modified: trunk/reactos/include/reactos/debug.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/debug.h?rev=23489&r1=23488&r2=23489&view=diff
==============================================================================
--- trunk/reactos/include/reactos/debug.h (original)
+++ trunk/reactos/include/reactos/debug.h Sun Aug  6 00:57:36 2006
@@ -29,7 +29,7 @@
 ULONG
 __cdecl
 DbgPrint(
-    IN PCCH  Format,
+    IN PCCHAR  Format,
     IN ...
 );
 




More information about the Ros-diffs mailing list