mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:15:41 +00:00
[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:
parent
2a81b18aee
commit
f3aa1616ef
1 changed files with 2 additions and 1 deletions
|
@ -10,7 +10,8 @@ static
|
||||||
INT_PTR
|
INT_PTR
|
||||||
NULL_Unused()
|
NULL_Unused()
|
||||||
{
|
{
|
||||||
__debugbreak();
|
DPRINT1("NULL_Unused\n");
|
||||||
|
// __debugbreak();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue