Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
1eefe9dd
Commit
1eefe9dd
authored
11 years ago
by
Hans Leidekker
Committed by
Alexandre Julliard
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
wbemprox: Implement Win32_BIOS.IdentificationCode and Win32_BIOS.SMBIOSBIOSVersion.
parent
796d4d0c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/wbemprox/builtin.c
+17
-6
17 additions, 6 deletions
dlls/wbemprox/builtin.c
with
17 additions
and
6 deletions
dlls/wbemprox/builtin.c
+
17
−
6
View file @
1eefe9dd
...
...
@@ -152,6 +152,8 @@ static const WCHAR prop_handleW[] =
{
'H'
,
'a'
,
'n'
,
'd'
,
'l'
,
'e'
,
0
};
static
const
WCHAR
prop_idW
[]
=
{
'I'
,
'D'
,
0
};
static
const
WCHAR
prop_identificationcodeW
[]
=
{
'I'
,
'd'
,
'e'
,
'n'
,
't'
,
'i'
,
'f'
,
'i'
,
'c'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'C'
,
'o'
,
'd'
,
'e'
,
0
};
static
const
WCHAR
prop_indexW
[]
=
{
'I'
,
'n'
,
'd'
,
'e'
,
'x'
,
0
};
static
const
WCHAR
prop_interfaceindexW
[]
=
...
...
@@ -216,6 +218,8 @@ static const WCHAR prop_servicepackminorW[] =
{
'S'
,
'e'
,
'r'
,
'v'
,
'i'
,
'c'
,
'e'
,
'P'
,
'a'
,
'c'
,
'k'
,
'M'
,
'i'
,
'n'
,
'o'
,
'r'
,
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
prop_servicetypeW
[]
=
{
'S'
,
'e'
,
'r'
,
'v'
,
'i'
,
'c'
,
'e'
,
'T'
,
'y'
,
'p'
,
'e'
,
0
};
static
const
WCHAR
prop_smbiosbiosversionW
[]
=
{
'S'
,
'M'
,
'B'
,
'I'
,
'O'
,
'S'
,
'B'
,
'I'
,
'O'
,
'S'
,
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
prop_startmodeW
[]
=
{
'S'
,
't'
,
'a'
,
'r'
,
't'
,
'M'
,
'o'
,
'd'
,
'e'
,
0
};
static
const
WCHAR
prop_sizeW
[]
=
...
...
@@ -260,11 +264,13 @@ static const struct column col_baseboard[] =
};
static
const
struct
column
col_bios
[]
=
{
{
prop_descriptionW
,
CIM_STRING
},
{
prop_manufacturerW
,
CIM_STRING
},
{
prop_releasedateW
,
CIM_DATETIME
},
{
prop_serialnumberW
,
CIM_STRING
},
{
prop_versionW
,
CIM_STRING
|
COL_FLAG_KEY
}
{
prop_descriptionW
,
CIM_STRING
},
{
prop_identificationcodeW
,
CIM_STRING
},
{
prop_manufacturerW
,
CIM_STRING
},
{
prop_releasedateW
,
CIM_DATETIME
},
{
prop_serialnumberW
,
CIM_STRING
},
{
prop_smbiosbiosversionW
,
CIM_STRING
},
{
prop_versionW
,
CIM_STRING
|
COL_FLAG_KEY
}
};
static
const
struct
column
col_cdromdrive
[]
=
{
...
...
@@ -457,6 +463,8 @@ static const WCHAR bios_releasedateW[] =
{
'2'
,
'0'
,
'1'
,
'2'
,
'0'
,
'6'
,
'0'
,
'8'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'.'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'+'
,
'0'
,
'0'
,
'0'
,
0
};
static
const
WCHAR
bios_serialnumberW
[]
=
{
'0'
,
0
};
static
const
WCHAR
bios_smbiosbiosversionW
[]
=
{
'W'
,
'i'
,
'n'
,
'e'
,
0
};
static
const
WCHAR
bios_versionW
[]
=
{
'W'
,
'I'
,
'N'
,
'E'
,
' '
,
' '
,
' '
,
'-'
,
' '
,
'1'
,
0
};
static
const
WCHAR
cdromdrive_nameW
[]
=
...
...
@@ -516,9 +524,11 @@ struct record_baseboard
struct
record_bios
{
const
WCHAR
*
description
;
const
WCHAR
*
identificationcode
;
const
WCHAR
*
manufacturer
;
const
WCHAR
*
releasedate
;
const
WCHAR
*
serialnumber
;
const
WCHAR
*
smbiosbiosversion
;
const
WCHAR
*
version
;
};
struct
record_cdromdrive
...
...
@@ -705,7 +715,8 @@ static const struct record_baseboard data_baseboard[] =
};
static
const
struct
record_bios
data_bios
[]
=
{
{
bios_descriptionW
,
bios_manufacturerW
,
bios_releasedateW
,
bios_serialnumberW
,
bios_versionW
}
{
bios_descriptionW
,
bios_descriptionW
,
bios_manufacturerW
,
bios_releasedateW
,
bios_serialnumberW
,
bios_smbiosbiosversionW
,
bios_versionW
}
};
static
const
struct
record_diskdrive
data_diskdrive
[]
=
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment