spotifykeydumper/SpotifyKeyDumper/Utils.h
2020-11-01 22:08:10 -07:00

12 lines
259 B
C++

#pragma once
class Utils
{
public:
static bool Detour32(char* src, char* dst, const intptr_t len);
static char* TrampHook32(char* src, char* dst, const intptr_t len);
static int GetSpotifyVersion();
static std::string HexString(BYTE* data, int len);
};