mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-24 22:35:36 +08:00
28 lines
803 B
C++
28 lines
803 B
C++
#include<Windows.h>
|
|
#include<QApplication>
|
|
#include<QFont>
|
|
#include<QDir>
|
|
#include<thread>
|
|
#include<mutex>
|
|
#include<Shlwapi.h>
|
|
#include<filesystem>
|
|
|
|
extern "C" __declspec(dllexport) HMODULE* QtLoadLibrary(LPCWSTR* dlls,int num){
|
|
auto hdlls=new HMODULE[num];
|
|
auto mutex=CreateSemaphoreW(0,0,1,0);
|
|
std::thread([=](){
|
|
for(int i=0;i<num;i++)
|
|
QApplication::addLibraryPath(QString::fromStdWString(std::filesystem::path(dlls[i]).parent_path()));
|
|
|
|
int _=0;
|
|
QApplication app(_, nullptr);
|
|
app.setFont(QFont("MS Shell Dlg 2", 10));
|
|
for(int i=0;i<num;i++)
|
|
hdlls[i]=LoadLibraryW(dlls[i]);
|
|
ReleaseSemaphore(mutex,1,0);
|
|
app.exec();
|
|
|
|
}).detach();
|
|
WaitForSingleObject(mutex,INFINITE);
|
|
return hdlls;
|
|
} |