7 Oct
2025
7 Oct
'25
11:29 a.m.
Dmitry Timoshkov (@dmitry) commented about dlls/gdi32/enhmetafile.c:
DeleteMetaFile(hmf); return ret; } + +/****************************************************************** + * GetEnhMetaFilePixelFormat (GDI32.@) + */ +UINT WINAPI GetEnhMetaFilePixelFormat( HENHMETAFILE hemf, UINT size, PIXELFORMATDESCRIPTOR *ppfd ) +{ + FIXME( "(%p,%d,%p)\n", hemf, size, ppfd ); + return 0;
Probably it should return GDI_ERROR. Also, usually ": stub" is appened in the FIXME message for stubs. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9117#note_117812