https://git.reactos.org/?p=reactos.git;a=commitdiff;h=fdeb169a27d7432a0494a…
commit fdeb169a27d7432a0494a58cc7eab52a6d809147
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Wed Sep 6 14:02:17 2023 +0200
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Thu Sep 7 20:28:03 2023 +0200
[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")