Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
71af5954
Commit
71af5954
authored
Aug 16, 2005
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 16, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use LPSTORAGE to better match the PSDK.
Document the real SEGPTR type using the standard documentation mechanisms. Fixes winapi_check warnings.
parent
e3181e3f
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
8 deletions
+17
-8
ole2.c
dlls/ole32/ole2.c
+2
-2
ole2_16.c
dlls/ole32/ole2_16.c
+6
-2
storage.c
dlls/ole32/storage.c
+8
-3
win16.api
tools/winapi/win16.api
+1
-1
No files found.
dlls/ole32/ole2.c
View file @
71af5954
...
...
@@ -2322,7 +2322,7 @@ done:
/******************************************************************************
* OleDoAutoConvert [OLE32.@]
*/
HRESULT
WINAPI
OleDoAutoConvert
(
IStorage
*
pStg
,
LPCLSID
pClsidNew
)
HRESULT
WINAPI
OleDoAutoConvert
(
LPSTORAGE
pStg
,
LPCLSID
pClsidNew
)
{
FIXME
(
"(%p,%p) : stub
\n
"
,
pStg
,
pClsidNew
);
return
E_NOTIMPL
;
...
...
@@ -2331,7 +2331,7 @@ HRESULT WINAPI OleDoAutoConvert(IStorage *pStg, LPCLSID pClsidNew)
/******************************************************************************
* OleDoAutoConvert [OLE2.79]
*/
HRESULT
WINAPI
OleDoAutoConvert16
(
IStorage
*
pStg
,
LPCLSID
pClsidNew
)
HRESULT
WINAPI
OleDoAutoConvert16
(
LPSTORAGE
pStg
,
LPCLSID
pClsidNew
)
{
FIXME
(
"(%p,%p) : stub
\n
"
,
pStg
,
pClsidNew
);
return
E_NOTIMPL
;
...
...
dlls/ole32/ole2_16.c
View file @
71af5954
...
...
@@ -195,11 +195,15 @@ BOOL WINAPI IsValidInterface16(SEGPTR punk)
/******************************************************************************
* OleLoad [OLE2.12]
*
* PARAMS
* pStg Segmented LPSTORAGE pointer.
* pClientSite Segmented LPOLECLIENTSITE pointer.
*/
HRESULT
WINAPI
OleLoad16
(
/*LPSTORAGE16*/
SEGPTR
pStg
,
SEGPTR
pStg
,
REFIID
riid
,
/*LPOLECLIENTSITE16*/
SEGPTR
pClientSite
,
SEGPTR
pClientSite
,
LPVOID
*
ppvObj
)
{
FIXME
(
"(%lx,%s,%lx,%p), stub!
\n
"
,
pStg
,
debugstr_guid
(
riid
),
pClientSite
,
ppvObj
);
...
...
dlls/ole32/storage.c
View file @
71af5954
...
...
@@ -2223,9 +2223,14 @@ HRESULT WINAPI StgOpenStorageOnILockBytes16(
/***********************************************************************
* ReadClassStg (OLE2.18)
*
* This method reads the CLSID previously written to a storage object with the WriteClassStg.
* This method reads the CLSID previously written to a storage object with
* the WriteClassStg.
*
* PARAMS
* pstg Segmented LPSTORAGE pointer.
*/
HRESULT
WINAPI
ReadClassStg16
(
SEGPTR
/*IStorage **/
pstg
,
CLSID
*
pclsid
){
HRESULT
WINAPI
ReadClassStg16
(
SEGPTR
pstg
,
CLSID
*
pclsid
)
{
STATSTG16
statstg
;
HANDLE16
hstatstg
;
HRESULT
hres
;
...
...
@@ -2268,7 +2273,7 @@ HRESULT WINAPI ReadClassStg16(SEGPTR /*IStorage **/pstg,CLSID *pclsid){
/***********************************************************************
* GetConvertStg (OLE2.82)
*/
HRESULT
WINAPI
GetConvertStg16
(
IStorage
*
stg
)
{
HRESULT
WINAPI
GetConvertStg16
(
LPSTORAGE
stg
)
{
FIXME
(
"unimplemented stub!
\n
"
);
return
E_FAIL
;
}
tools/winapi/win16.api
View file @
71af5954
...
...
@@ -762,7 +762,6 @@ CLSID *
IDataObject *
IDataObject **
ILockBytes16 *
IStorage *
LPCLSID
LPDROPTARGET
LPLOCKBYTES16 *
...
...
@@ -770,6 +769,7 @@ LPMONIKER *
LPOLEINPLACEACTIVEOBJECT
LPOLEINPLACEFRAME
LPRUNNINGOBJECTTABLE *
LPSTORAGE
LPVOID
LPVOID *
REFIID
...
...
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