BoxedAppSDK_RemoteProcess_LoadLibrary
Description
Loads the specified DLL to the specified process.
Syntax
C++
HMODULE __stdcall BoxedAppSDK_RemoteProcess_LoadLibrary(DWORD dwProcessId, LPCTSTR szPath);
Delphi
function BoxedAppSDK_RemoteProcess_LoadLibrary(dwProcessId: DWORD; szPath: PAnsiChar): HMODULE; stdcall;
function BoxedAppSDK_RemoteProcess_LoadLibraryA(dwProcessId: DWORD; szPath: PAnsiChar): HMODULE; stdcall;
function BoxedAppSDK_RemoteProcess_LoadLibraryW(dwProcessId: DWORD; szPath: PWideChar): HMODULE; stdcall;
Parameters
dwProcessId
The process id of the target process.
szPath
The path of the DLL to load.