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
de61fc5e
Commit
de61fc5e
authored
Feb 26, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Added a CoGetContextToken stub.
parent
8e97ff5e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
0 deletions
+15
-0
compobj.c
dlls/ole32/compobj.c
+12
-0
ole32.spec
dlls/ole32/ole32.spec
+1
-0
objbase.h
include/objbase.h
+2
-0
No files found.
dlls/ole32/compobj.c
View file @
de61fc5e
...
...
@@ -3734,6 +3734,18 @@ HRESULT WINAPI CoGetObjectContext(REFIID riid, void **ppv)
return
hr
;
}
/***********************************************************************
* CoGetContextToken [OLE32.@]
*/
HRESULT
WINAPI
CoGetContextToken
(
ULONG_PTR
*
token
)
{
FIXME
(
"stub
\n
"
);
if
(
token
)
*
token
=
0
;
return
E_NOTIMPL
;
}
/***********************************************************************
* DllMain (OLE32.@)
*/
...
...
dlls/ole32/ole32.spec
View file @
de61fc5e
...
...
@@ -24,6 +24,7 @@
@ stdcall CoGetCallContext(ptr ptr)
@ stub CoGetCallerTID
@ stdcall CoGetClassObject(ptr long ptr ptr ptr)
@ stdcall CoGetContextToken(ptr)
@ stub CoGetCurrentLogicalThreadId
@ stdcall CoGetCurrentProcess()
@ stub CoGetInstanceFromFile #@ stdcall (ptr ptr ptr long wstr long ptr) return 0,ERR_NOTIMPLEMENTED
...
...
include/objbase.h
View file @
de61fc5e
...
...
@@ -350,6 +350,8 @@ LPVOID WINAPI CoTaskMemRealloc(LPVOID ptr, ULONG size);
HRESULT
WINAPI
CoRegisterMallocSpy
(
LPMALLOCSPY
pMallocSpy
);
HRESULT
WINAPI
CoRevokeMallocSpy
(
void
);
HRESULT
WINAPI
CoGetContextToken
(
ULONG_PTR
*
token
);
/* class registration flags; passed to CoRegisterClassObject */
typedef
enum
tagREGCLS
{
...
...
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