在Qt4应用程序中使用user32.dll的函数

时间:2010-10-22 05:38:39

标签: c++ qt winapi linker mingw

我无法在我的Qt应用程序中使用MonitorFromPoint函数。我有最新的Qt SDL 2010.05和Windows XP上的mingw

#include <QtCore/QCoreApplication>
#include<windows.h>
#include <winuser.h>
int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    POINT pt;
    MonitorFromPoint(pt,2);
    return a.exec();
}

我将此添加到.pro文件

LIBS+= -luser32

结果是

g++ -c -g -frtti -fexceptions -mthreads -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"..\include\QtCore" -I"..\include" -I"..\include\ActiveQt" -I"tmp\moc\debug_shared" -I"..\testUser32" -I"." -I"..\mkspecs\win32-g++" -o tmp\obj\debug_shared\main.o ..\testUser32\main.cpp

mingw32-make[1]: Leaving directory `C:/Qt/2010.05/qt/testUser32-build-desktop'

mingw32-make: Leaving directory `C:/Qt/2010.05/qt/testUser32-build-desktop'

..\testUser32\main.cpp: In function 'int main(int, char**)':

..\testUser32\main.cpp:8: error: 'MonitorFromPoint' was not declared in this scope

mingw32-make[1]: *** [tmp/obj/debug_shared/main.o] Error 1

mingw32-make: *** [debug-all] Error 2

The process "C:/Qt/2010.05/mingw/bin/mingw32-make.exe" exited with code %2.
Error while building project testUser32 (target: Desktop)
When executing build step 'Make'

IRc上有人说这是一个mingw问题,我应该使用visualc编译器。切换编译器需要时间,也许我会发现其他问题。我从wingdi.h导入函数,我没有问题。 我需要一个关于问题的更好的解释,你如何弄清楚和解决方案

P.S。我试图在多监视器系统中获取屏幕几何,QDesktopWidget不起作用,请参阅主题Capture multiple screens desktop image using Qt4

1 个答案:

答案 0 :(得分:1)

我发现了http://www.mingw.org/wiki/Use_more_recent_defined_functions

我再次查看了标题,函数已定义,我看到了这个

#if (_WIN32_WINNT >= 0x0500 || _WIN32_WINDOWS >= 0x0410)
WINUSERAPI HMONITOR WINAPI MonitorFromPoint(POINT,DWORD);

这意味着此方法不适用于旧版本的Windows。 解决方案是定义

#include <QtCore/QCoreApplication>
#define _WIN32_WINNT  0x0500
#include<windows.h>
#include <winuser.h>
int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    POINT pt;
    MonitorFromPoint(pt,2);
    return a.exec();
}