Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8fc1c948
Commit
8fc1c948
authored
Jul 02, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Jul 02, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Fix the CIM to VARIANT type mapping for a couple of properties.
parent
cd340ac8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
builtin.c
dlls/wbemprox/builtin.c
+9
-9
No files found.
dlls/wbemprox/builtin.c
View file @
8fc1c948
...
...
@@ -136,14 +136,14 @@ static const struct column col_compsys[] =
{
prop_descriptionW
,
CIM_STRING
},
{
prop_manufacturerW
,
CIM_STRING
},
{
prop_modelW
,
CIM_STRING
},
{
prop_numlogicalprocessorsW
,
CIM_UINT32
},
{
prop_numprocessorsW
,
CIM_UINT32
},
{
prop_numlogicalprocessorsW
,
CIM_UINT32
,
VT_I4
},
{
prop_numprocessorsW
,
CIM_UINT32
,
VT_I4
},
{
prop_totalphysicalmemoryW
,
CIM_UINT64
}
};
static
const
struct
column
col_logicaldisk
[]
=
{
{
prop_deviceidW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
|
COL_FLAG_KEY
},
{
prop_drivetypeW
,
CIM_UINT32
},
{
prop_drivetypeW
,
CIM_UINT32
,
VT_I4
},
{
prop_filesystemW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_freespaceW
,
CIM_UINT64
},
{
prop_sizeW
,
CIM_UINT64
}
...
...
@@ -151,8 +151,8 @@ static const struct column col_logicaldisk[] =
static
const
struct
column
col_networkadapter
[]
=
{
{
prop_deviceidW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
|
COL_FLAG_KEY
},
{
prop_interfaceindexW
,
CIM_UINT32
},
{
prop_netconnectionstatusW
,
CIM_UINT16
},
{
prop_interfaceindexW
,
CIM_UINT32
,
VT_I4
},
{
prop_netconnectionstatusW
,
CIM_UINT16
,
VT_I4
},
{
prop_speedW
,
CIM_UINT64
}
};
static
const
struct
column
col_os
[]
=
...
...
@@ -160,7 +160,7 @@ static const struct column col_os[] =
{
prop_captionW
,
CIM_STRING
},
{
prop_csdversionW
,
CIM_STRING
},
{
prop_osarchitectureW
,
CIM_STRING
},
{
prop_oslanguageW
,
CIM_UINT32
},
{
prop_oslanguageW
,
CIM_UINT32
,
VT_I4
},
{
prop_systemdirectoryW
,
CIM_STRING
}
};
static
const
struct
column
col_process
[]
=
...
...
@@ -169,9 +169,9 @@ static const struct column col_process[] =
{
prop_commandlineW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_descriptionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_handleW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
|
COL_FLAG_KEY
},
{
prop_pprocessidW
,
CIM_UINT32
},
{
prop_processidW
,
CIM_UINT32
},
{
prop_threadcountW
,
CIM_UINT32
}
{
prop_pprocessidW
,
CIM_UINT32
,
VT_I4
},
{
prop_processidW
,
CIM_UINT32
,
VT_I4
},
{
prop_threadcountW
,
CIM_UINT32
,
VT_I4
}
};
static
const
struct
column
col_processor
[]
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment