本文介绍了从 QFile 获取句柄的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 QFile
,但我需要在其上调用一些仅接受 HANDLE
的 Win32 函数.有没有办法检索QFile
的底层HANDLE
?
I have a QFile
, but I need to call some Win32 functions on it that accept only a HANDLE
. Is there a way to retrieve the underlying HANDLE
of the QFile
?
推荐答案
我找到了一种使用 _get_osfhandle()
的方法(在 MinGW 和 VS 中可用):
I found a way that uses _get_osfhandle()
(available in MinGW and VS):
QFile file;
....
HANDLE handle = (HANDLE) _get_osfhandle(file.handle()).
这篇关于从 QFile 获取句柄的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!