(Assembly) INT 0x2D by External

Created the Wednesday 22 June 2022. Updated 1 day, 18 hours ago.

Code

            BOOL IsDebuggerPresent_Int2d()
{
    __try
    { 
        __asm int 0x2d 
    }
    __except(1)
    {
        return FALSE;
    }
    return TRUE;
}