Unspotify/spotify-reverse-launcher/injector/injector.h
2021-11-18 01:23:06 +10:00

14 lines
262 B
C++

#pragma once
#include <Windows.h>
#include "shared/logo.h"
namespace injector {
namespace detail {
void* get_process_by_name( const wchar_t* name );
}
bool inject( const wchar_t* proc, const char* path );
bool inject( HANDLE proc, const char* path );
}