[PATCH] gdi32: Fix function prototype when building without freetype.

Nikolay Sivov nsivov at codeweavers.com
Mon Dec 3 01:39:47 CST 2018


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---

Change missing from 03ccce70b540379bf4de86232d375f3e64cf465c.

 dlls/gdi32/freetype.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
index f50c163f89..fb58a6a7e9 100644
--- a/dlls/gdi32/freetype.c
+++ b/dlls/gdi32/freetype.c
@@ -9168,7 +9168,7 @@ BOOL WINAPI GetFontFileData( DWORD instance_id, DWORD unknown, UINT64 offset, vo
 /*************************************************************************
  *             GetFontFileInfo   (GDI32.@)
  */
-BOOL WINAPI GetFontFileInfo( DWORD instance_id, DWORD unknown, struct font_fileinfo *info, DWORD size, DWORD *needed)
+BOOL WINAPI GetFontFileInfo( DWORD instance_id, DWORD unknown, struct font_fileinfo *info, SIZE_T size, SIZE_T *needed)
 {
     *needed = 0;
     return FALSE;
-- 
2.19.2




More information about the wine-devel mailing list