Hi!++
Is there a way to do a GUI in .dll file? It mean: I want do a .dll file, inject it to process (for example firefox) then there should be a GUI, but I don't know how to do it. I'm using QT creator as IDE and want do it in c++

Like it:

Qt Code:
  1. void tGui()
  2. {
  3. //the qt instruction (creating and showing window)
  4. }
  5. BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
  6. {
  7. switch (ul_reason_for_call)
  8. {
  9. case DLL_PROCESS_ATTACH:
  10. CreateThread(nullptr, 0, tGui, nullptr, 0, nullptr);
  11. break;
  12. }
  13. return TRUE;
  14. }
To copy to clipboard, switch view to plain text mode 
I also don't see a option to create .dll file in QT creator :/
Thanks for help