From bbdbe763d935e3549c499fbbae32c79d22697032 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Fri, 3 Apr 2026 15:48:29 +0200 Subject: [PATCH] [INCUDE] Fix a typo in the INetCfgComponentControl_ApplyPnpChanges macro --- sdk/include/psdk/netcfgn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/include/psdk/netcfgn.h b/sdk/include/psdk/netcfgn.h index ea16dd708f0..772d4a2e36b 100644 --- a/sdk/include/psdk/netcfgn.h +++ b/sdk/include/psdk/netcfgn.h @@ -50,7 +50,7 @@ DECLARE_INTERFACE_(INetCfgComponentControl, IUnknown) #define INetCfgComponentControl_Release(p) (p)->lpVtbl->Release(p) #define INetCfgComponentControl_Initialize(p,a,b,c) (p)->lpVtbl->Initialize(p,a,b,c) #define INetCfgComponentControl_ApplyRegistryChanges(p) (p)->lpVtbl->ApplyRegistryChanges(p) -#define INetCfgComponentControl_ApplyPnpChanges(p,a) (p)->lpVtbl->ApplyRegistryChanges(p,a) +#define INetCfgComponentControl_ApplyPnpChanges(p,a) (p)->lpVtbl->ApplyPnpChanges(p,a) #define INetCfgComponentControl_CancelChanges(p) (p)->lpVtbl->CancelChanges(p) #endif