fixed prototype of GdiGetCharDimensions
Modified: trunk/reactos/lib/gdi32/objects/font.c
Modified: trunk/reactos/lib/user32/include/user32.h

Modified: trunk/reactos/lib/gdi32/objects/font.c
--- trunk/reactos/lib/gdi32/objects/font.c	2005-12-03 17:21:37 UTC (rev 19840)
+++ trunk/reactos/lib/gdi32/objects/font.c	2005-12-03 17:33:41 UTC (rev 19841)
@@ -818,7 +818,7 @@
  */
 DWORD
 STDCALL
-GdiGetCharDimensions(HDC hdc, LPTEXTMETRICW lptm, DWORD *height)
+GdiGetCharDimensions(HDC hdc, LPTEXTMETRICW lptm, LONG *height)
 {
     SIZE sz;
     static const WCHAR alphabet[] = {

Modified: trunk/reactos/lib/user32/include/user32.h
--- trunk/reactos/lib/user32/include/user32.h	2005-12-03 17:21:37 UTC (rev 19840)
+++ trunk/reactos/lib/user32/include/user32.h	2005-12-03 17:33:41 UTC (rev 19841)
@@ -42,4 +42,4 @@
 
 /* FIXME: FILIP */
 HGDIOBJ STDCALL  NtGdiSelectObject(HDC  hDC, HGDIOBJ  hGDIObj);
-DWORD STDCALL GdiGetCharDimensions(HDC, LPTEXTMETRICW, DWORD *);
+DWORD STDCALL GdiGetCharDimensions(HDC, LPTEXTMETRICW, LONG *);