From 269d17ca59feb8a6e2a27819bbfc9675d8c3b360 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Thu, 30 Dec 2004 04:11:19 +0000 Subject: [PATCH] - Fix prototype of NtGdiExtCreatePen. svn path=/trunk/; revision=12396 --- reactos/include/win32k/pen.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/include/win32k/pen.h b/reactos/include/win32k/pen.h index aaee161fe8b..47559baac5d 100644 --- a/reactos/include/win32k/pen.h +++ b/reactos/include/win32k/pen.h @@ -25,8 +25,8 @@ HPEN STDCALL NtGdiExtCreatePen( DWORD PenStyle, DWORD Width, - CONST PLOGBRUSH LogBrush, + CONST LOGBRUSH *LogBrush, DWORD StyleCount, - CONST PDWORD Style); + CONST DWORD *Style); #endif