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
4062db44
Commit
4062db44
authored
Aug 03, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 03, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Add stub implementations of CoGetActivationState and CoGetCallState.
parent
824b81ea
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
2 deletions
+22
-2
combase.spec
dlls/combase/combase.spec
+2
-2
ole32.spec
dlls/ole32/ole32.spec
+2
-0
ole32_main.c
dlls/ole32/ole32_main.c
+18
-0
No files found.
dlls/combase/combase.spec
View file @
4062db44
...
...
@@ -88,11 +88,11 @@
@ stub CoEnableCallCancellation
@ stdcall CoFreeUnusedLibraries() ole32.CoFreeUnusedLibraries
@ stdcall CoFreeUnusedLibrariesEx(long long) ole32.CoFreeUnusedLibrariesEx
@ st
ub
CoGetActivationState
@ st
dcall CoGetActivationState(int128 long ptr) ole32.
CoGetActivationState
@ stub CoGetApartmentID
@ stub CoGetApartmentType
@ stdcall CoGetCallContext(ptr ptr) ole32.CoGetCallContext
@ st
ub
CoGetCallState
@ st
dcall CoGetCallState(long ptr) ole32.
CoGetCallState
@ stdcall CoGetCallerTID(ptr) ole32.CoGetCallerTID
@ stub CoGetCancelObject
@ stdcall CoGetClassObject(ptr long ptr ptr ptr) ole32.CoGetClassObject
...
...
dlls/ole32/ole32.spec
View file @
4062db44
...
...
@@ -22,7 +22,9 @@
@ stdcall CoFreeLibrary(long)
@ stdcall CoFreeUnusedLibraries()
@ stdcall CoFreeUnusedLibrariesEx(long long)
@ stdcall CoGetActivationState(int128 long ptr)
@ stdcall CoGetCallContext(ptr ptr)
@ stdcall CoGetCallState(long ptr)
@ stdcall CoGetCallerTID(ptr)
@ stdcall CoGetClassObject(ptr long ptr ptr ptr)
@ stdcall CoGetContextToken(ptr)
...
...
dlls/ole32/ole32_main.c
View file @
4062db44
...
...
@@ -160,3 +160,21 @@ HGLOBAL WINAPI OleMetafilePictFromIconAndLabel(HICON hIcon, LPOLESTR lpszLabel,
return
hmem
;
}
/***********************************************************************
* CoGetActivationState (ole32.@)
*/
HRESULT
WINAPI
CoGetActivationState
(
GUID
guid
,
DWORD
unknown
,
DWORD
*
unknown2
)
{
FIXME
(
"%s, %x, %p
\n
"
,
debugstr_guid
(
&
guid
),
unknown
,
unknown2
);
return
E_NOTIMPL
;
}
/***********************************************************************
* CoGetCallState (ole32.@)
*/
HRESULT
WINAPI
CoGetCallState
(
int
unknown
,
PULONG
unknown2
)
{
FIXME
(
"%d, %p
\n
"
,
unknown
,
unknown2
);
return
E_NOTIMPL
;
}
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