mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-08-31 01:56:24 +00:00
c/cpp files
This commit is contained in:
parent
128c9fac77
commit
2dfbf46e51
9 changed files with 461 additions and 1 deletions
|
|
@ -1043,5 +1043,35 @@ hyperdbg_u_request_cpuid(UINT32 FunctionId, UINT32 SubFunctionId)
|
|||
//
|
||||
CommandCpuidRequestCpuid(FunctionId, SubFunctionId);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief I/O instruction (IN)
|
||||
*
|
||||
* @param InRequest
|
||||
*
|
||||
* @return BOOLEAN TRUE if successful, FALSE otherwise
|
||||
*/
|
||||
BOOLEAN
|
||||
hyperdebg_u_in_instruction(DEBUGGER_USER_IN_REQUEST_RESPONSE InRequest)
|
||||
{
|
||||
CommandUserInRequest(InRequest);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief I/O instruction (OUT)
|
||||
*
|
||||
* @param OutRequest
|
||||
*
|
||||
* @return BOOLEAN TRUE if successful, FALSE otherwise
|
||||
*/
|
||||
BOOLEAN
|
||||
hyperdebg_u_out_instruction(DEBUGGER_USER_OUT_REQUEST_RESPONSE OutRequest)
|
||||
{
|
||||
CommandUserOutRequest(OutRequest);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue