[GDI32]: Don't break/crash (if no debugger attached) each time an unimplemented GDI function is called. This is hit a lot by Word 2010 (e.g. when using drawing features), PowerPoint, etc... i.e. all applications that perform "serious" GDI manipulations.

A nice addition would be to know exactly which unimplemented function was called.

svn path=/trunk/; revision=73896
This commit is contained in:
Hermès Bélusca-Maïto 2017-02-24 02:17:45 +00:00
parent 2a81b18aee
commit f3aa1616ef

View file

@ -10,7 +10,8 @@ static
INT_PTR
NULL_Unused()
{
__debugbreak();
DPRINT1("NULL_Unused\n");
// __debugbreak();
return 0;
}