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
f0d30968
Commit
f0d30968
authored
May 23, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
May 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Forward OleCreateLinkFromData and OleCreateStaticFromData to OleCreateFromData.
parent
83aa7eff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
26 deletions
+25
-26
ole2impl.c
dlls/ole32/ole2impl.c
+25
-0
ole2stubs.c
dlls/ole32/ole2stubs.c
+0
-26
No files found.
dlls/ole32/ole2impl.c
View file @
f0d30968
...
@@ -209,6 +209,31 @@ HRESULT WINAPI OleCreateFromData(LPDATAOBJECT data, REFIID iid,
...
@@ -209,6 +209,31 @@ HRESULT WINAPI OleCreateFromData(LPDATAOBJECT data, REFIID iid,
fmt
,
NULL
,
NULL
,
client_site
,
stg
,
obj
);
fmt
,
NULL
,
NULL
,
client_site
,
stg
,
obj
);
}
}
/******************************************************************************
* OleCreateLinkFromData [OLE32.@]
*/
HRESULT
WINAPI
OleCreateLinkFromData
(
IDataObject
*
data
,
REFIID
iid
,
DWORD
renderopt
,
FORMATETC
*
fmt
,
IOleClientSite
*
client_site
,
IStorage
*
stg
,
void
**
obj
)
{
FIXME
(
"%p,%s,%08x,%p,%p,%p,%p: semi-stub
\n
"
,
data
,
debugstr_guid
(
iid
),
renderopt
,
fmt
,
client_site
,
stg
,
obj
);
return
OleCreateFromData
(
data
,
iid
,
renderopt
,
fmt
,
client_site
,
stg
,
obj
);
}
/******************************************************************************
* OleCreateStaticFromData [OLE32.@]
*/
HRESULT
WINAPI
OleCreateStaticFromData
(
IDataObject
*
data
,
REFIID
iid
,
DWORD
renderopt
,
FORMATETC
*
fmt
,
IOleClientSite
*
client_site
,
IStorage
*
stg
,
void
**
obj
)
{
FIXME
(
"%p,%s,%08x,%p,%p,%p,%p: semi-stub
\n
"
,
data
,
debugstr_guid
(
iid
),
renderopt
,
fmt
,
client_site
,
stg
,
obj
);
return
OleCreateFromData
(
data
,
iid
,
renderopt
,
fmt
,
client_site
,
stg
,
obj
);
}
/******************************************************************************
/******************************************************************************
* OleDuplicateData [OLE32.@]
* OleDuplicateData [OLE32.@]
...
...
dlls/ole32/ole2stubs.c
View file @
f0d30968
...
@@ -82,32 +82,6 @@ HGLOBAL WINAPI OleGetIconOfClass(REFCLSID rclsid, LPOLESTR lpszLabel, BOOL fUseT
...
@@ -82,32 +82,6 @@ HGLOBAL WINAPI OleGetIconOfClass(REFCLSID rclsid, LPOLESTR lpszLabel, BOOL fUseT
return
NULL
;
return
NULL
;
}
}
/******************************************************************************
* OleCreateStaticFromData [OLE32.@]
*/
HRESULT
WINAPI
OleCreateStaticFromData
(
LPDATAOBJECT
pSrcDataObj
,
REFIID
iid
,
DWORD
renderopt
,
LPFORMATETC
pFormatEtc
,
LPOLECLIENTSITE
pClientSite
,
LPSTORAGE
pStg
,
LPVOID
*
ppvObj
)
{
FIXME
(
"(srcdata=%p, refiid=%s, renderopt=%x, formatetc=%p, client=%p, storage=%p, ppv=%p), stub!
\n
"
,
pSrcDataObj
,
debugstr_guid
(
iid
),
renderopt
,
pFormatEtc
,
pClientSite
,
pStg
,
ppvObj
);
return
E_NOTIMPL
;
}
/******************************************************************************
* OleCreateLinkFromData [OLE32.@]
*/
HRESULT
WINAPI
OleCreateLinkFromData
(
LPDATAOBJECT
pSrcDataObj
,
REFIID
riid
,
DWORD
renderopt
,
LPFORMATETC
pFormatEtc
,
LPOLECLIENTSITE
pClientSite
,
LPSTORAGE
pStg
,
LPVOID
*
ppvObj
)
{
FIXME
(
"(not shown), stub!
\n
"
);
return
E_NOTIMPL
;
}
/***********************************************************************
/***********************************************************************
* OleRegEnumFormatEtc [OLE32.@]
* OleRegEnumFormatEtc [OLE32.@]
*/
*/
...
...
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