diff --git a/sdk/include/psdk/cfg.h b/sdk/include/psdk/cfg.h index 3653dec0eeb..751fa006550 100644 --- a/sdk/include/psdk/cfg.h +++ b/sdk/include/psdk/cfg.h @@ -188,7 +188,8 @@ typedef enum _PNP_VETO_TYPE { PNP_VetoIllegalDeviceRequest, PNP_VetoInsufficientPower, PNP_VetoNonDisableable, - PNP_VetoLegacyDriver + PNP_VetoLegacyDriver, + PNP_VetoInsufficientRights, } PNP_VETO_TYPE, *PPNP_VETO_TYPE; #ifdef __cplusplus diff --git a/sdk/include/reactos/idl/pnp.idl b/sdk/include/reactos/idl/pnp.idl index f56b932120e..0a75c523f05 100644 --- a/sdk/include/reactos/idl/pnp.idl +++ b/sdk/include/reactos/idl/pnp.idl @@ -53,7 +53,7 @@ typedef enum _PNP_VETO_TYPE { PNP_VetoNonDisableable = 10, PNP_VetoLegacyDriver = 11, PNP_VetoInsufficientRights = 12, -} *PPNP_VETO_TYPE; +} PNP_VETO_TYPE, *PPNP_VETO_TYPE; cpp_quote("#endif")