spotifykeydumper/SpotifyKeyDumper/SpotifyKeyDumper.cpp

28 lines
565 B
C++
Raw Normal View History

2020-11-02 06:08:10 +01:00
#include "pch.h"
#include "Hooks.h"
static const char* VERSION = "0.2.0";
2020-11-02 06:08:10 +01:00
DWORD WINAPI InitMain(LPVOID lpParam)
{
AllocConsole();
FILE* fDummy;
freopen_s(&fDummy, "CONIN$", "r", stdin);
freopen_s(&fDummy, "CONOUT$", "w", stderr);
freopen_s(&fDummy, "CONOUT$", "w", stdout);
std::cout << "SpotifyKeyDumper version: " << VERSION << std::endl;
2020-11-02 06:08:10 +01:00
Hooks::Init();
return 0;
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
{
if (dwAttached == DLL_PROCESS_ATTACH)
CreateThread(NULL, 0, &InitMain, NULL, 0, NULL);
return 1;
}