Commit e0513f4d authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

gdi32: Add GdiIsMetaPrintDC implementation.

parent ca66b3eb
...@@ -2408,8 +2408,12 @@ INT WINAPI SetICMMode( HDC hdc, INT mode ) ...@@ -2408,8 +2408,12 @@ INT WINAPI SetICMMode( HDC hdc, INT mode )
*/ */
BOOL WINAPI GdiIsMetaPrintDC( HDC hdc ) BOOL WINAPI GdiIsMetaPrintDC( HDC hdc )
{ {
FIXME( "%p\n", hdc ); DC_ATTR *dc_attr;
return FALSE;
TRACE( "%p\n", hdc );
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
return dc_attr->print && dc_attr->emf;
} }
/*********************************************************************** /***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment