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
c8187b09
Commit
c8187b09
authored
Jul 22, 2005
by
Marcus Meissner
Committed by
Alexandre Julliard
Jul 22, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OleInitializeWOW gets 2 arguments.
parent
2e0a42ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ole2.c
dlls/ole32/ole2.c
+2
-2
ole32.spec
dlls/ole32/ole32.spec
+1
-1
No files found.
dlls/ole32/ole2.c
View file @
c8187b09
...
@@ -294,8 +294,8 @@ void WINAPI OleUninitialize(void)
...
@@ -294,8 +294,8 @@ void WINAPI OleUninitialize(void)
/******************************************************************************
/******************************************************************************
* OleInitializeWOW [OLE32.@]
* OleInitializeWOW [OLE32.@]
*/
*/
HRESULT
WINAPI
OleInitializeWOW
(
DWORD
x
)
{
HRESULT
WINAPI
OleInitializeWOW
(
DWORD
x
,
DWORD
y
)
{
FIXME
(
"(0x%08lx
),stub!
\n
"
,
x
);
FIXME
(
"(0x%08lx
, 0x%08lx),stub!
\n
"
,
x
,
y
);
return
0
;
return
0
;
}
}
...
...
dlls/ole32/ole32.spec
View file @
c8187b09
...
@@ -188,7 +188,7 @@
...
@@ -188,7 +188,7 @@
@ stdcall OleGetIconOfClass(ptr ptr long)
@ stdcall OleGetIconOfClass(ptr ptr long)
@ stub OleGetIconOfFile
@ stub OleGetIconOfFile
@ stdcall OleInitialize(ptr)
@ stdcall OleInitialize(ptr)
@ stdcall OleInitializeWOW(long)
@ stdcall OleInitializeWOW(long
long
)
@ stdcall OleIsCurrentClipboard(ptr)
@ stdcall OleIsCurrentClipboard(ptr)
@ stdcall OleIsRunning(ptr)
@ stdcall OleIsRunning(ptr)
@ stdcall OleLoad(ptr ptr ptr ptr)
@ stdcall OleLoad(ptr ptr ptr ptr)
...
...
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