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
453e2dcf
Commit
453e2dcf
authored
Feb 26, 2000
by
Abey George
Committed by
Alexandre Julliard
Feb 26, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Return an error instead of a success code in OleCreate stub function.
parent
047513f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
13 deletions
+2
-13
ole2stubs.c
dlls/ole32/ole2stubs.c
+2
-13
No files found.
dlls/ole32/ole2stubs.c
View file @
453e2dcf
...
...
@@ -103,7 +103,7 @@ HRESULT WINAPI OleCreate(REFCLSID rclsid, REFIID riid, DWORD renderopt, LPFORMAT
LPSTORAGE
pStg
,
LPVOID
*
ppvObj
)
{
FIXME
(
"(not shown), stub!
\n
"
);
return
S_OK
;
return
E_OUTOFMEMORY
;
}
/******************************************************************************
...
...
@@ -201,7 +201,7 @@ BOOL WINAPI OleIsRunning(LPOLEOBJECT pObject)
HRESULT
WINAPI
OleRegEnumVerbs
(
REFCLSID
clsid
,
LPENUMOLEVERB
*
ppenum
)
{
FIXME
(
"(%p,%p), stub!
\n
"
,
clsid
,
ppenum
);
return
S_OK
;
return
OLEOBJ_E_NOVERBS
;
}
/***********************************************************************
...
...
@@ -217,17 +217,6 @@ HRESULT WINAPI OleRegEnumFormatEtc (
return
S_OK
;
}
#include "oleauto.h"
/***********************************************************************
* SetErrorInfo [OLE32.255]
*/
HRESULT
WINAPI
SetErrorInfo
(
DWORD
dwReserved
,
IErrorInfo
*
perrinfo
)
{
FIXME
(
"(%ld, %p): stub:
\n
"
,
dwReserved
,
perrinfo
);
return
S_OK
;
}
/***********************************************************************
* PropVariantClear [OLE32.166]
*/
...
...
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