输出窗口提示:
Linking...LINK : fatal error LNK1104: cannot open file "ntdll.lib"执行 link.exe 时出错.
Server.dat - 1 error(s), 0 warning(s)
解决法案:
把ntapi.h、ntdll.lib放在你的工程目录下面
然后再在程序预编译中添加:#include "ntapi.h"#pragma comment(lib, "ntdll.lib")
就可以了~ ^_^