我在网上找到一段代码。想在我VC8里面使用,我直接把这个代码写到程序里面:bool myIsDebuggerPresent ()
{
__asm
{
         mov      eax, large fs:18h
         mov      eax, [eax+30h]
         movzx    eax, byte ptr [eax+2]
}
}但是无法编译通过,请帮忙看看