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=23... ============================================================================== --- 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=... ============================================================================== --- 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... ============================================================================== --- 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 ... );