Module: wine Branch: master Commit: d371225ec22b27705e582a475d70302c03e07f8f URL: http://source.winehq.org/git/wine.git/?a=commit;h=d371225ec22b27705e582a475d...
Author: Francois Gouget fgouget@free.fr Date: Thu Jan 30 14:31:11 2014 +0100
gdiplus: Make METAFILE_GetEmfType() static.
---
dlls/gdiplus/metafile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/gdiplus/metafile.c b/dlls/gdiplus/metafile.c index 15929a0..ed00a3e 100644 --- a/dlls/gdiplus/metafile.c +++ b/dlls/gdiplus/metafile.c @@ -914,7 +914,7 @@ static int CALLBACK get_metafile_type_proc(HDC hDC, HANDLETABLE *lpHTable, const return FALSE; }
-MetafileType METAFILE_GetEmfType(HENHMETAFILE hemf) +static MetafileType METAFILE_GetEmfType(HENHMETAFILE hemf) { MetafileType result = MetafileTypeInvalid; EnumEnhMetaFile(NULL, hemf, get_metafile_type_proc, &result, NULL);