Quote:
Evtl. haben ja einige dafür Verwendung. :)Code:BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: CreateThread(nullptr, 0, tThread, nullptr, 0, nullptr); DisableThreadLibraryCalls(hModule); break; } return TRUE; }
-> Function zum Einbinden von DLL's? Weil bräuchte ich dann auch irgendwie Eingebunden zum Automatisieren meines Tools :P