From fdeb169a27d7432a0494a58cc7eab52a6d809147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 6 Sep 2023 14:02:17 +0200 Subject: [PATCH] [PSDK] Add missing PNP_VETO_TYPE PNP_VetoInsufficientRights enumerator. --- sdk/include/psdk/cfg.h | 3 ++- sdk/include/reactos/idl/pnp.idl | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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")