
(Assembly) INT 0x2D by External
Created the Wednesday 22 June 2022. Updated 9 months, 1 week ago.
Code
BOOL IsDebuggerPresent_Int2d()
{
__try
{
__asm int 0x2d
}
__except(1)
{
return FALSE;
}
return TRUE;
}