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
f379a1dc
Commit
f379a1dc
authored
Apr 12, 2004
by
Filip Navara
Committed by
Alexandre Julliard
Apr 12, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of E_UNSPEC non-standard error value.
parent
dc4535f9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
9 deletions
+3
-9
defaulthandler.c
dlls/ole32/defaulthandler.c
+1
-1
filemoniker.c
dlls/ole32/filemoniker.c
+1
-3
oleobject.c
dlls/shdocvw/oleobject.c
+1
-1
winerror.h
include/winerror.h
+0
-4
No files found.
dlls/ole32/defaulthandler.c
View file @
f379a1dc
...
...
@@ -925,7 +925,7 @@ static HRESULT WINAPI DefaultHandler_GetMoniker(
}
return
E_
UNSPEC
;
return
E_
FAIL
;
}
/************************************************************************
...
...
dlls/ole32/filemoniker.c
View file @
f379a1dc
...
...
@@ -708,10 +708,8 @@ HRESULT WINAPI FileMonikerImpl_BindToStorage(IMoniker* iface,
}
else
if
(
(
IsEqualIID
(
&
IID_IStream
,
riid
))
||
(
IsEqualIID
(
&
IID_ILockBytes
,
riid
))
)
return
E_UNSPEC
;
return
E_FAIL
;
else
return
E_NOINTERFACE
;
}
else
{
...
...
dlls/shdocvw/oleobject.c
View file @
f379a1dc
...
...
@@ -220,7 +220,7 @@ static HRESULT WINAPI WBOOBJ_GetMoniker(LPOLEOBJECT iface, DWORD dwAssign,
DWORD
dwWhichMoniker
,
LPMONIKER
*
ppmk
)
{
FIXME
(
"stub (%p, %ld, %ld, %p)
\n
"
,
iface
,
dwAssign
,
dwWhichMoniker
,
ppmk
);
return
E_
UNSPEC
;
return
E_
FAIL
;
}
/************************************************************************
...
...
include/winerror.h
View file @
f379a1dc
...
...
@@ -1546,10 +1546,6 @@
#define E_POINTER _HRESULT_TYPEDEF_(0x80004003L)
#define E_ABORT _HRESULT_TYPEDEF_(0x80004004L)
#define E_FAIL _HRESULT_TYPEDEF_(0x80004005L)
/* FIXME: E_UNSPEC is not a standard value but it is used by
* FileMoniker, IOleLink and DoDragDrop as a return value.
*/
#define E_UNSPEC E_FAIL
#define CO_E_INIT_TLS _HRESULT_TYPEDEF_(0x80004006L)
...
...
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