From: Adam Słaboń asaillen@protonmail.com
This is needed for 8BitDo Firmware Updater version 2.52 --- dlls/wbemprox/builtin.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/dlls/wbemprox/builtin.c b/dlls/wbemprox/builtin.c index e77203f7d1e..f9824d1efc8 100644 --- a/dlls/wbemprox/builtin.c +++ b/dlls/wbemprox/builtin.c @@ -351,6 +351,7 @@ static const struct column col_process[] = { L"Name", CIM_STRING|COL_FLAG_DYNAMIC }, { L"ParentProcessID", CIM_UINT32 }, { L"ProcessID", CIM_UINT32 }, + { L"Status", CIM_STRING }, { L"ThreadCount", CIM_UINT32 }, { L"WorkingSetSize", CIM_UINT64 }, /* methods */ @@ -869,6 +870,7 @@ struct record_process const WCHAR *name; UINT32 pprocess_id; UINT32 process_id; + const WCHAR *status; UINT32 thread_count; UINT64 workingsetsize; /* methods */ @@ -3635,6 +3637,7 @@ static enum fill_status fill_process( struct table *table, const struct expr *co rec->name = wcsdup( entry.szExeFile ); rec->process_id = entry.th32ProcessID; rec->pprocess_id = entry.th32ParentProcessID; + rec->status = L"OK"; rec->thread_count = entry.cntThreads; /* methods */ rec->create = process_create;