mirror of https://github.com/x64dbg/GleeBug
added ThreaderCreateRemoteThread
This commit is contained in:
parent
688fe89439
commit
367b37d773
|
|
@ -470,6 +470,13 @@ public:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Threader
|
||||||
|
ULONG_PTR ThreaderCreateRemoteThread(ULONG_PTR ThreadStartAddress, bool AutoCloseTheHandle, LPVOID ThreadPassParameter, LPDWORD ThreadId)
|
||||||
|
{
|
||||||
|
//TODO
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void cbCreateProcessEvent(const CREATE_PROCESS_DEBUG_INFO & createProcess, const Process & process) override
|
void cbCreateProcessEvent(const CREATE_PROCESS_DEBUG_INFO & createProcess, const Process & process) override
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -268,4 +268,10 @@ __declspec(dllexport) void TITCALL SingleStep(DWORD StepCount, LPVOID StepCallBa
|
||||||
__declspec(dllexport) void TITCALL StepInto(LPVOID traceCallBack)
|
__declspec(dllexport) void TITCALL StepInto(LPVOID traceCallBack)
|
||||||
{
|
{
|
||||||
emu.StepInto(traceCallBack);
|
emu.StepInto(traceCallBack);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Threader
|
||||||
|
__declspec(dllexport) ULONG_PTR TITCALL ThreaderCreateRemoteThread(ULONG_PTR ThreadStartAddress, bool AutoCloseTheHandle, LPVOID ThreadPassParameter, LPDWORD ThreadId)
|
||||||
|
{
|
||||||
|
return emu.ThreaderCreateRemoteThread(ThreadStartAddress, AutoCloseTheHandle, ThreadPassParameter, ThreadId);
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue