mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
f4009aaa4a
* no longer uses RtlQueryProcessDebugInformation to get WOW64 modules * renamed header guards * updated CHANGELOG.txt git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3436 21ef857c-d57f-4fe0-8362-d861dc6d29cd
53 lines
871 B
C
53 lines
871 B
C
#ifndef _PH_PHNT_H
|
|
#define _PH_PHNT_H
|
|
|
|
// This header file provides access to NT APIs.
|
|
|
|
// Version
|
|
|
|
#define PHNT_WIN2K 50
|
|
#define PHNT_WINXP 51
|
|
#define PHNT_WS03 52
|
|
#define PHNT_VISTA 60
|
|
#define PHNT_WIN7 61
|
|
|
|
#ifndef PHNT_VERSION
|
|
#define PHNT_VERSION PHNT_WINXP
|
|
#endif
|
|
|
|
// Options
|
|
|
|
//#define PHNT_NO_INLINE_INIT_STRING
|
|
|
|
#include <ntbasic.h>
|
|
#include <ntnls.h>
|
|
|
|
#include <ntcm.h>
|
|
#include <ntdbg.h>
|
|
#include <ntexapi.h>
|
|
#include <ntioapi.h>
|
|
#include <ntkeapi.h>
|
|
#include <ntlpcapi.h>
|
|
#include <ntmmapi.h>
|
|
#include <ntobapi.h>
|
|
#include <ntpnpapi.h>
|
|
#include <ntpoapi.h>
|
|
#include <ntpsapi.h>
|
|
#include <ntregapi.h>
|
|
#include <ntrtl.h>
|
|
#include <ntseapi.h>
|
|
#include <nttmapi.h>
|
|
#include <nttp.h>
|
|
#include <ntxcapi.h>
|
|
|
|
#include <ntwow64.h>
|
|
|
|
#include <ntlsa.h>
|
|
#include <ntsam.h>
|
|
|
|
#include <ntmisc.h>
|
|
|
|
#include <rev.h>
|
|
|
|
#endif
|