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
22 lines
677 B
C
22 lines
677 B
C
#ifndef _NTCM_H
|
|
#define _NTCM_H
|
|
|
|
typedef enum _PNP_VETO_TYPE
|
|
{
|
|
PNP_VetoTypeUnknown, // unspecified
|
|
PNP_VetoLegacyDevice, // instance path
|
|
PNP_VetoPendingClose, // instance path
|
|
PNP_VetoWindowsApp, // module
|
|
PNP_VetoWindowsService, // service
|
|
PNP_VetoOutstandingOpen, // instance path
|
|
PNP_VetoDevice, // instance path
|
|
PNP_VetoDriver, // driver service name
|
|
PNP_VetoIllegalDeviceRequest, // instance path
|
|
PNP_VetoInsufficientPower, // unspecified
|
|
PNP_VetoNonDisableable, // instance path
|
|
PNP_VetoLegacyDriver, // service
|
|
PNP_VetoInsufficientRights // unspecified
|
|
} PNP_VETO_TYPE, *PPNP_VETO_TYPE;
|
|
|
|
#endif
|