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
a9855b51
Commit
a9855b51
authored
Feb 26, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Feb 26, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for {Create,Get,Set}ErrorInfo.
parent
453e2dcf
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
57 additions
and
5 deletions
+57
-5
ole32.spec
dlls/ole32/ole32.spec
+2
-2
Makefile.in
dlls/oleaut32/Makefile.in
+1
-0
errorinfo.c
dlls/oleaut32/errorinfo.c
+43
-0
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+3
-3
oleauto.h
include/oleauto.h
+8
-0
No files found.
dlls/ole32/ole32.spec
View file @
a9855b51
...
...
@@ -192,11 +192,11 @@ type win32
189 stub CoRegisterChannelHook
190 stub CoRegisterSurrogate
191 stub CoSwitchCallContext
192 st
ub
CreateErrorInfo
192 st
dcall CreateErrorInfo(ptr)
CreateErrorInfo
193 stub CreateObjrefMoniker
194 stub DllRegisterServer
195 stdcall FreePropVariantArray(long ptr) FreePropVariantArray
196 st
ub
GetErrorInfo
196 st
dcall GetErrorInfo(long ptr)
GetErrorInfo
197 stub HACCEL_UserFree
198 stub HACCEL_UserMarshal
199 stub HACCEL_UserSize
...
...
dlls/oleaut32/Makefile.in
View file @
a9855b51
...
...
@@ -11,6 +11,7 @@ IMPORTS = olepro32 ole32 comctl32 winmm
SPEC_SRCS
=
oleaut32.spec ole2disp.spec typelib.spec
C_SRCS
=
\
errorinfo.c
\
ole2disp.c
\
oleaut.c
\
olefont.c
\
...
...
dlls/oleaut32/errorinfo.c
0 → 100644
View file @
a9855b51
/*
* ErrorInfo API
*
* Copyright 2000 Patrik Stridvall
*
*/
#include "debugtools.h"
#include "oleauto.h"
#include "windef.h"
#include "winerror.h"
DEFAULT_DEBUG_CHANNEL
(
ole
)
/***********************************************************************
* CreateErrorInfo
*/
HRESULT
WINAPI
CreateErrorInfo
(
ICreateErrorInfo
**
pperrinfo
)
{
FIXME
(
"(%ld, %p): stub:
\n
"
,
pperrinfo
);
return
S_OK
;
}
/***********************************************************************
* GetErrorInfo
*/
HRESULT
WINAPI
GetErrorInfo
(
ULONG
dwReserved
,
IErrorInfo
**
pperrinfo
)
{
FIXME
(
"(%ld, %p): stub:
\n
"
,
dwReserved
,
pperrinfo
);
return
S_OK
;
}
/***********************************************************************
* SetErrorInfo
*/
HRESULT
WINAPI
SetErrorInfo
(
ULONG
dwReserved
,
IErrorInfo
*
perrinfo
)
{
FIXME
(
"(%ld, %p): stub:
\n
"
,
dwReserved
,
perrinfo
);
return
S_OK
;
}
dlls/oleaut32/oleaut32.spec
View file @
a9855b51
...
...
@@ -154,9 +154,9 @@ type win32
197 stub VarDecFromStr
198 stub VarDecFromDisp
199 stub VarDecFromBool
200 st
ub
GetErrorInfo
201 stdcall SetErrorInfo(long ptr) SetErrorInfo
202 st
ub
CreateErrorInfo
200 st
dcall GetErrorInfo(long ptr)
GetErrorInfo
201 stdcall SetErrorInfo(long ptr
) SetErrorInfo
202 st
dcall CreateErrorInfo(ptr)
CreateErrorInfo
205 stdcall VarI2FromI1(long ptr) VarI2FromI1
206 stdcall VarI2FromUI2(long ptr) VarI2FromUI2
207 stdcall VarI2FromUI4(long ptr) VarI2FromUI4
...
...
include/oleauto.h
View file @
a9855b51
...
...
@@ -30,6 +30,14 @@ int WINAPI SysStringLen16(BSTR16);
int
WINAPI
SysStringLen
(
BSTR
);
/*****************************************************************
* ErrorInfo API
*/
HRESULT
WINAPI
SetErrorInfo
(
ULONG
dwReserved
,
IErrorInfo
*
perrinfo
);
HRESULT
WINAPI
GetErrorInfo
(
ULONG
dwReserved
,
IErrorInfo
**
pperrinfo
);
HRESULT
WINAPI
CreateErrorInfo
(
ICreateErrorInfo
**
pperrinfo
);
/*****************************************************************
* SafeArray API
*/
...
...
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