Fix DbgPrint / DbgPrintEx definitions to use PCCHAR instead of PCCH (recent WDK uses PCCHAR).

This change fixes compiling.

svn path=/trunk/; revision=23489
This commit is contained in:
Aleksey Bragin
2006-08-05 20:57:36 +00:00
parent 3646d0b420
commit 4a9752bbe4
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -10450,7 +10450,7 @@ DbgBreakPointWithStatus(
ULONG
__cdecl
DbgPrint(
IN PCCH Format,
IN PCCHAR Format,
IN ...);
ULONG
@@ -10458,7 +10458,7 @@ __cdecl
DbgPrintEx(
IN ULONG ComponentId,
IN ULONG Level,
IN PCCH Format,
IN PCCHAR Format,
IN ...);
NTOSAPI
+2 -2
View File
@@ -2454,7 +2454,7 @@ RtlFreeRangeList(IN PRTL_RANGE_LIST RangeList);
ULONG
__cdecl
DbgPrint(
IN PCCH Format,
IN PCCHAR Format,
IN ...
);
@@ -2464,7 +2464,7 @@ __cdecl
DbgPrintEx(
IN ULONG ComponentId,
IN ULONG Level,
IN PCCH Format,
IN PCCHAR Format,
IN ...
);
+1 -1
View File
@@ -29,7 +29,7 @@
ULONG
__cdecl
DbgPrint(
IN PCCH Format,
IN PCCHAR Format,
IN ...
);