我尝试通过执行以下操作在QT5中加载user32
:
#include <qlibrary.h>
#include <windows.h>
#include <lmcons.h>
#include <process.h>
#include <stdio.h>
#include <userenv.h>
#include <winuser.h>
QLibrary *lib = new QLibrary("user32");
QFunctionPointer p;
if(lib->load() && (p = lib->resolve("GetLastInputInfo"))) {
qDebug() << "Lib loaded";
} else {
qDebug() << "Lib could not load";
}
但继续输出“Lib无法加载”
任何想法我可能做错了什么?