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
a8c66e9e
Commit
a8c66e9e
authored
Oct 26, 2007
by
Vincent Hardy
Committed by
Alexandre Julliard
Oct 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Add TypeLib version for W2K, WXP, and Vista.
parent
fa4304f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
typelib16.c
dlls/oleaut32/typelib16.c
+9
-0
No files found.
dlls/oleaut32/typelib16.c
View file @
a8c66e9e
...
...
@@ -153,6 +153,9 @@ HRESULT WINAPI LoadTypeLib16(
*| OLE 2.1 NT 1993-95 ?? ???
*| OLE 2.3.1 W95 23 700
*| OLE2 4.0 NT4SP6 1993-98 40 4277
*| OLE 2.1 W2K 2000 10 3029
*| OLE 2.1 WXP 2002 10 3029
*| OLE 2.1 Vista 2007 10 3029
*/
DWORD
WINAPI
OaBuildVersion16
(
void
)
{
...
...
@@ -171,6 +174,12 @@ DWORD WINAPI OaBuildVersion16(void)
return
MAKELONG
(
3024
,
10
);
/* W98 SE */
case
0x00000004
:
/* NT4 */
return
MAKELONG
(
4277
,
40
);
/* NT4 SP6 */
case
0x00000005
:
/* W2K */
return
MAKELONG
(
3029
,
10
);
/* W2K SP4 */
case
0x00000105
:
/* WXP */
return
MAKELONG
(
3029
,
10
);
/* WXP SP2 */
case
0x00000006
:
/* Vista */
return
MAKELONG
(
3029
,
10
);
/* Vista */
default:
FIXME
(
"Version value not known yet. Please investigate it!
\n
"
);
return
0
;
...
...
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