From 8eb6d672a1aa2029ed056ea52be8db38a4be16b8 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Thu, 12 Apr 2007 05:14:24 +0000 Subject: [PATCH] Fix signedness error. svn path=/trunk/; revision=26323 --- reactos/dll/win32/user32/include/user32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/user32/include/user32.h b/reactos/dll/win32/user32/include/user32.h index b7d2378350f..6130ea73230 100644 --- a/reactos/dll/win32/user32/include/user32.h +++ b/reactos/dll/win32/user32/include/user32.h @@ -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 *);