summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2015-08-26 10:48:21 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2015-08-26 10:48:21 +0200
commit0bc22aa0cb1c7ae6a1d565f24665048dd62d964f (patch)
tree38b551a5280b5290684719fc62b9d152157a7c3a
parent249db99d6c09bbfd7d640a7da675e0166302903e (diff)
parentac49006c9f7d2d51617fd25fc3b8d5aae0b04233 (diff)
downloadpsutil-0bc22aa0cb1c7ae6a1d565f24665048dd62d964f.tar.gz
Merge branch 'master' of github.com:giampaolo/psutil
-rw-r--r--psutil/arch/windows/ntextapi.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/psutil/arch/windows/ntextapi.h b/psutil/arch/windows/ntextapi.h
index d10432a3..7f86c57a 100644
--- a/psutil/arch/windows/ntextapi.h
+++ b/psutil/arch/windows/ntextapi.h
@@ -186,7 +186,7 @@ typedef enum _PROCESSINFOCLASS2 {
ProcessTimes,
ProcessBasePriority,
ProcessRaisePriority,
- ProcessDebugPort,
+ _ProcessDebugPort,
ProcessExceptionPort,
ProcessAccessToken,
ProcessLdtInformation,
@@ -207,7 +207,7 @@ typedef enum _PROCESSINFOCLASS2 {
ProcessForegroundInformation,
_ProcessWow64Information,
/* added after XP+ */
- ProcessImageFileName,
+ _ProcessImageFileName,
ProcessLUIDDeviceMapsEnabled,
ProcessBreakOnTermination,
ProcessDebugObjectHandle,
@@ -224,5 +224,7 @@ typedef enum _PROCESSINFOCLASS2 {
#define PROCESSINFOCLASS PROCESSINFOCLASS2
#define ProcessBasicInformation _ProcessBasicInformation
#define ProcessWow64Information _ProcessWow64Information
+#define ProcessDebugPort _ProcessDebugPort
+#define ProcessImageFileName _ProcessImageFileName
#endif // __NTEXTAPI_H__