mirror of
https://github.com/ttttupup/wxhelper.git
synced 2025-08-02 13:57:35 +08:00
24 lines
439 B
C++
24 lines
439 B
C++
#include "pch.h"
|
|
#include "api.h"
|
|
#include "common.h"
|
|
|
|
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call,
|
|
LPVOID lpReserved) {
|
|
switch (ul_reason_for_call) {
|
|
case DLL_PROCESS_ATTACH: {
|
|
http_start(19088);
|
|
break;
|
|
}
|
|
case DLL_THREAD_ATTACH: {
|
|
break;
|
|
}
|
|
case DLL_THREAD_DETACH: {
|
|
break;
|
|
}
|
|
case DLL_PROCESS_DETACH: {
|
|
break;
|
|
}
|
|
}
|
|
return TRUE;
|
|
}
|