我试图制作一个程序女巫将通过进程 ID 获取进程的命令行。我正在使用 eclipse c++ 和 mingw 编译器
所以我找到了一个 1 教程如何做到这一点,它需要ntstatus就像我包含的教程一样#include <ntstatus.h>
我添加了代码的第一部分是什么:
typedef NTSTATUS (NTAPI *_NtQueryInformationProcess)(
HANDLE ProcessHandle,
DWORD ProcessInformationClass,
PVOID ProcessInformation,
DWORD ProcessInformationLength,
PDWORD ReturnLength
);
我gettig这3个错误:
expected primary-expression before '__attribute__
Type 'NTSTATUS' could not be resolved
typedef 'NTSTATUS' is initialized (use decltype instead)
在这条线上:typedef NTSTATUS (NTAPI *_NtQueryInformationProcess)(
我用谷歌搜索了这个问题,但我没有找到它......