From: Hans Leidekker Subject: Re: [PATCH] WBEMProxy: Implemented Complete SoftwareLicensingProduct row and data Message-Id: <4872af4bf12b3ec103d21c8f9f2345c2bf863caa.camel@codeweavers.com> Date: Tue, 25 Jan 2022 16:18:15 +0100 In-Reply-To: <20220125141847.1186569-1-shefben@gmail.com> References: <20220125141847.1186569-1-shefben@gmail.com> On Tue, 2022-01-25 at 08:18 -0600, Ben Shefte wrote: > Signed-off-by: Ben Shefte > --- >  dlls/wbemprox/builtin.c | 98 ++++++++++++++++++++++++++++++++++++++--- >  1 file changed, 92 insertions(+), 6 deletions(-) > > diff --git a/dlls/wbemprox/builtin.c b/dlls/wbemprox/builtin.c > index 5a09d64b8fb..4122afee59d 100644 > --- a/dlls/wbemprox/builtin.c > +++ b/dlls/wbemprox/builtin.c > @@ -388,9 +388,51 @@ static const struct column col_sid[] = >      { L"SidLength", CIM_UINT32 }, >  }; >  static const struct column col_softwarelicensingproduct[] = > -{ > - { L"LicenseIsAddon", CIM_BOOLEAN }, > - { L"LicenseStatus", CIM_UINT32 }, > + { > + { L"ID", CIM_STRING | COL_FLAG_KEY }, > + { L"Name", CIM_STRING }, > + { L"Description", CIM_STRING } Usually we don't add members until we find an application that needs them.