https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2626c724e93ec33f5aa71f...
commit 2626c724e93ec33f5aa71f2d01d3dc2391d13740 Author: Eric Kohl eric.kohl@reactos.org AuthorDate: Mon May 29 11:58:09 2023 +0200 Commit: Eric Kohl eric.kohl@reactos.org CommitDate: Mon May 29 11:58:09 2023 +0200
[UMPNPMGR] Replace some magic values --- base/services/umpnpmgr/rpcserver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/base/services/umpnpmgr/rpcserver.c b/base/services/umpnpmgr/rpcserver.c index 5625b4c3262..4ec7c55ff45 100644 --- a/base/services/umpnpmgr/rpcserver.c +++ b/base/services/umpnpmgr/rpcserver.c @@ -644,7 +644,7 @@ PNP_GetVersion( DPRINT("PNP_GetVersion(%p %p)\n", hBinding, pVersion);
- *pVersion = 0x0400; + *pVersion = CONFIGMG_VERSION;
return CR_SUCCESS; } @@ -4879,7 +4879,7 @@ PNP_GetVersionInternal( { UNREFERENCED_PARAMETER(hBinding);
- *pwVersion = 0x501; + *pwVersion = WINVER; return CR_SUCCESS; }