Posted 2008-04-27Updated 2008-04-27int 2eh 方式调用Native api小技巧。但是用的人好像不多。例子: Windows 2000 下 123456789101112131415161718NtQuerySystemInformationNo = 0x97;_declspec(naked)NTSTATUS __stdcall PrivateNtQuerySystemInformation (IN SYSTEM_INFORMATION_CLASS, IN OUT PVOID, IN ULONG, OUT PULONG OPTIONAL){ _asm { mov eax, NtQuerySystemInformationNo lea edx, [esp+4] int 2Eh ret 10h }} int 2eh 方式调用Native apihttp://usmacd.com/cn/int23_native_api/AuthorhenicesPosted on2008-04-27Updated on2008-04-27Licensed under#windows