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
32fe6bdc
Commit
32fe6bdc
authored
Feb 14, 2000
by
Juergen Schmied
Committed by
Alexandre Julliard
Feb 14, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for CoResumeClassObjects.
parent
78e84100
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
4 deletions
+19
-4
clipboard.c
dlls/ole32/clipboard.c
+7
-3
compobj.c
dlls/ole32/compobj.c
+11
-0
ole32.spec
dlls/ole32/ole32.spec
+1
-1
No files found.
dlls/ole32/clipboard.c
View file @
32fe6bdc
...
...
@@ -1091,12 +1091,12 @@ static HRESULT WINAPI OLEClipbrd_IDataObject_GetData(
* Declare "This" pointer
*/
ICOM_THIS
(
OLEClipbrd
,
iface
);
TRACE
(
"(%p,%p,%p)
\n
"
,
iface
,
pformatetcIn
,
pmedium
);
if
(
!
pformatetcIn
||
!
p
formatetcIn
||
!
p
medium
)
if
(
!
pformatetcIn
||
!
pmedium
)
return
E_INVALIDARG
;
TRACE
(
"(%p, %p)
\n
"
,
iface
,
pformatetcIn
);
/*
* If we have a data source placed on the clipboard (via OleSetClipboard)
* simply delegate to the source object's QueryGetData
...
...
@@ -1238,6 +1238,7 @@ static HRESULT WINAPI OLEClipbrd_IDataObject_SetData(
STGMEDIUM
*
pmedium
,
BOOL
fRelease
)
{
TRACE
(
"
\n
"
);
return
E_NOTIMPL
;
}
...
...
@@ -1363,6 +1364,7 @@ static HRESULT WINAPI OLEClipbrd_IDataObject_DAdvise(
IAdviseSink
*
pAdvSink
,
DWORD
*
pdwConnection
)
{
TRACE
(
"
\n
"
);
return
E_NOTIMPL
;
}
...
...
@@ -1377,6 +1379,7 @@ static HRESULT WINAPI OLEClipbrd_IDataObject_DUnadvise(
IDataObject
*
iface
,
DWORD
dwConnection
)
{
TRACE
(
"
\n
"
);
return
E_NOTIMPL
;
}
...
...
@@ -1391,6 +1394,7 @@ static HRESULT WINAPI OLEClipbrd_IDataObject_EnumDAdvise(
IDataObject
*
iface
,
IEnumSTATDATA
**
ppenumAdvise
)
{
TRACE
(
"
\n
"
);
return
E_NOTIMPL
;
}
...
...
dlls/ole32/compobj.c
View file @
32fe6bdc
...
...
@@ -1377,6 +1377,17 @@ HRESULT WINAPI CoGetClassObject(REFCLSID rclsid, DWORD dwClsContext,
}
/****************************************************************************************
* CoResumeClassObjects
*
* Resumes classobjects registered with REGCLS suspended
*/
HRESULT
WINAPI
CoResumeClassObjects
(
void
)
{
FIXME
(
"
\n
"
);
return
S_OK
;
}
/****************************************************************************************
* GetClassFile
*
* This function supplies the CLSID associated with the given filename.
...
...
dlls/ole32/ole32.spec
View file @
32fe6bdc
...
...
@@ -173,7 +173,7 @@ type win32
170 stub CoGetInstanceFromIStorage # stdcall (ptr ptr ptr long ptr long ptr) return 0,ERR_NOTIMPLEMENTED
171 stub CoRegisterPSClsid # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
172 stub CoReleaseServerProcess # stdcall () return 0,ERR_NOTIMPLEMENTED
173 st
ub CoResumeClassObjects # stdcall () return 0,ERR_NOTIMPLEMENTED
173 st
dcall CoResumeClassObjects() CoResumeClassObjects
174 stub CoRevertToSelf # stdcall () return 0,ERR_NOTIMPLEMENTED
175 stub CoSetProxyBlanket # stdcall (ptr long long wstr long long ptr long) return 0,ERR_NOTIMPLEMENTED
176 stub CoSuspendClassObjects # stdcall () return 0,ERR_NOTIMPLEMENTED
...
...
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