HyperDbg Debugger
Loading...
Searching...
No Matches
tests.h
Go to the documentation of this file.
1
12#pragma once
13
15// Constants //
17
22#define TEST_PROCESS_NAME "hyperdbg-test.exe"
23
25// Functions //
27
29CreateProcessAndOpenPipeConnection(PHANDLE ConnectionPipeHandle,
30 PHANDLE ThreadHandle,
31 PHANDLE ProcessHandle);
33OpenHyperDbgTestProcess(PHANDLE ThreadHandle,
34 PHANDLE ProcessHandle,
35 CHAR * Args);
36
37VOID
38CloseProcessAndClosePipeConnection(HANDLE ConnectionPipeHandle,
39 HANDLE ThreadHandle,
40 HANDLE ProcessHandle);
UCHAR BOOLEAN
Definition BasicTypes.h:35
char CHAR
Definition BasicTypes.h:33
BOOLEAN OpenHyperDbgTestProcess(PHANDLE ThreadHandle, PHANDLE ProcessHandle, CHAR *Args)
Opens test process.
Definition tests.cpp:312
BOOLEAN CreateProcessAndOpenPipeConnection(PHANDLE ConnectionPipeHandle, PHANDLE ThreadHandle, PHANDLE ProcessHandle)
Create a Process And Open Pipe Connection object.
Definition tests.cpp:111
VOID CloseProcessAndClosePipeConnection(HANDLE ConnectionPipeHandle, HANDLE ThreadHandle, HANDLE ProcessHandle)
Close the pipe connection and the remote process.
Definition tests.cpp:368