有没有办法区分设备上下文类型?
我正在 Hooking GDI API ExtTextOut
BOOL ExtTextOut(
__in HDC hdc,
__in int X,
__in int Y,
__in UINT fuOptions,
__in const RECT *lprc,
__in LPCTSTR lpString,
__in UINT cbCount,
__in const INT *lpDx
);
我的问题:是否有一种可靠的方法来区分设备上下文类型(HDC)。 特别是要知道它是内存设备上下文还是显示设备上下文。
感谢你们的努力, 莫米科。
I am Hooking the GDI API ExtTextOut
BOOL ExtTextOut(
__in HDC hdc,
__in int X,
__in int Y,
__in UINT fuOptions,
__in const RECT *lprc,
__in LPCTSTR lpString,
__in UINT cbCount,
__in const INT *lpDx
);
My question: Is there a good solid way to distinguish the device context type (HDC).
In particular to know if it is a memory device context or a display device context.
Thanks for your efforts,
Momico.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然有,你应该放入你的自定义函数
返回 GetObjectType( dc ) == OBJ_MEMDC ;
最好的
off course there is, you should put in your custom function
return GetObjectType( dc ) == OBJ_MEMDC ;
best