标题测试

代码高亮测试

1
2
3
4
5
6
7
8
9
10
11
12
BOOL CheckDebug()
{
int result = 0;
__asm
{
mov eax, fs:[30h]
mov eax, [eax + 68h]
and eax, 0x70
mov result, eax
}
return result != 0;
}