Author: jimtabor
Date: Thu Apr 12 09:14:24 2007
New Revision: 26323
URL:
http://svn.reactos.org/svn/reactos?rev=26323&view=rev
Log:
Fix signedness error.
Modified:
trunk/reactos/dll/win32/user32/include/user32.h
Modified: trunk/reactos/dll/win32/user32/include/user32.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/user32/include/u…
==============================================================================
--- trunk/reactos/dll/win32/user32/include/user32.h (original)
+++ trunk/reactos/dll/win32/user32/include/user32.h Thu Apr 12 09:14:24 2007
@@ -40,4 +40,4 @@
/* FIXME: Use ntgdi.h then cleanup... */
HGDIOBJ STDCALL NtGdiSelectObject(HDC hDC, HGDIOBJ hGDIObj);
BOOL STDCALL NtGdiPatBlt(HDC hdcDst, INT x, INT y, INT cx, INT cy, DWORD rop4);
-DWORD STDCALL GdiGetCharDimensions(HDC, LPTEXTMETRICW, DWORD *);
+LONG STDCALL GdiGetCharDimensions(HDC, LPTEXTMETRICW, LONG *);