mirror of
https://github.com/thereals0beit/RemoteFunctions
synced 2026-06-08 17:44:42 +00:00
Create Remote.h
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#ifndef __REMOTE_HEADER__
|
||||
#define __REMOTE_HEADER__
|
||||
|
||||
namespace Remote
|
||||
{
|
||||
namespace Allocate
|
||||
{
|
||||
void* Alloc( HANDLE hProcess, size_t Size );
|
||||
void* Commit( HANDLE hProcess, void* Data, size_t Size );
|
||||
void Free( HANDLE hProcess, void* Data, size_t Size );
|
||||
};
|
||||
|
||||
HANDLE GetRemoteProcessHandleA( char *pszProcessName );
|
||||
HMODULE GetRemoteModuleHandleA( HANDLE hProcess, const char *szModule );
|
||||
HMODULE RemoteLoadLibraryA( HANDLE hProcess, char *pszLibraryPath );
|
||||
FARPROC GetRemoteProcAddress( HANDLE hProcess, char *pszModuleName, char *pszProcName );
|
||||
};
|
||||
|
||||
|
||||
#endif //__REMOTE_HEADER__
|
||||
Reference in New Issue
Block a user