gdi32: Use the unicode version of CreateMetaFile.

This commit is contained in:
Huw Davies 2009-06-29 13:46:33 +01:00 committed by Alexandre Julliard
parent 1911adcea5
commit d7af14f1b5
1 changed files with 1 additions and 1 deletions

View File

@ -1166,7 +1166,7 @@ UINT WINAPI GetWinMetaFileBits(HENHMETAFILE hemf,
TRACE("(%p,%d,%p,%d,%p) rc=%s\n", hemf, cbBuffer, lpbBuffer,
fnMapMode, hdcRef, wine_dbgstr_rect(&rc));
hdcmf = CreateMetaFileA(NULL);
hdcmf = CreateMetaFileW(NULL);
PlayEnhMetaFile(hdcmf, hemf, &rc);
hmf = CloseMetaFile(hdcmf);
ret = GetMetaFileBitsEx(hmf, cbBuffer, lpbBuffer);