mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
afe9f2a836
* added C++ compatibility for header files * removed #include <shlobj.h> from phgui.h git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3637 21ef857c-d57f-4fe0-8362-d861dc6d29cd
61 lines
948 B
C
61 lines
948 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
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#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>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|