Hans Leidekker : wbemprox: Mark some string properties as dynamic.

Alexandre Julliard julliard at winehq.org
Fri Nov 27 16:04:37 CST 2020


Module: wine
Branch: master
Commit: 81e0a6225f1b21294ea244d660c7b556249cf401
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=81e0a6225f1b21294ea244d660c7b556249cf401

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Fri Nov 27 09:14:45 2020 +0100

wbemprox: Mark some string properties as dynamic.

Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/wbemprox/builtin.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/wbemprox/builtin.c b/dlls/wbemprox/builtin.c
index be22d8d3066..9bd58ca77e6 100644
--- a/dlls/wbemprox/builtin.c
+++ b/dlls/wbemprox/builtin.c
@@ -376,10 +376,10 @@ static const struct column col_sid[] =
 };
 static const struct column col_sounddevice[] =
 {
-    { L"DeviceID",     CIM_STRING },
+    { L"DeviceID",     CIM_STRING|COL_FLAG_DYNAMIC },
     { L"Manufacturer", CIM_STRING },
     { L"Name",         CIM_STRING },
-    { L"PNPDeviceID",  CIM_STRING },
+    { L"PNPDeviceID",  CIM_STRING|COL_FLAG_DYNAMIC },
     { L"ProductName",  CIM_STRING },
     { L"Status",       CIM_STRING },
     { L"StatusInfo",   CIM_UINT16 },




More information about the wine-cvs mailing list