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
76cc171f
Commit
76cc171f
authored
Nov 14, 1999
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 14, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for SetErrorInfo, PropVariantClear, PropVariantCopy,
FreePropVariantArray.
parent
5f6080ee
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
4 deletions
+47
-4
ole2stubs.c
dlls/ole32/ole2stubs.c
+43
-0
ole32.spec
dlls/ole32/ole32.spec
+4
-4
No files found.
dlls/ole32/ole2stubs.c
View file @
76cc171f
...
...
@@ -224,3 +224,46 @@ 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]
*/
HRESULT
WINAPI
PropVariantClear
(
/*PROPVARIANT* */
void
*
pvar
)
{
FIXME
(
"(%p): stub:
\n
"
,
pvar
);
*
(
LPWORD
)
pvar
=
0
;
/* sets at least the vt field to VT_EMPTY */
return
S_OK
;
}
/***********************************************************************
* PropVariantCopy [OLE32.246]
*/
HRESULT
WINAPI
PropVariantCopy
(
/*PROPVARIANT* */
void
*
pvarDest
,
/*const PROPVARIANT* */
void
*
pvarSrc
)
{
FIXME
(
"(%p, %p): stub:
\n
"
,
pvarDest
,
pvarSrc
);
return
S_OK
;
}
/***********************************************************************
* FreePropVariantArray [OLE32.195]
*/
HRESULT
WINAPI
FreePropVariantArray
(
ULONG
cVariants
,
/*PROPVARIANT* */
void
*
rgvars
)
{
FIXME
(
"(%lu, %p): stub:
\n
"
,
cVariants
,
rgvars
);
return
S_OK
;
}
dlls/ole32/ole32.spec
View file @
76cc171f
...
...
@@ -166,7 +166,7 @@ type win32
163 stdcall CoInitializeEx(ptr long) CoInitializeEx
164 stub CoInitializeSecurity # stdcall (ptr long ptr ptr long long ptr long ptr) return 0,ERR_NOTIMPLEMENTED
165 stdcall CoCreateInstanceEx(ptr ptr long ptr long ptr) CoCreateInstanceEx
166 st
ub
PropVariantClear
166 st
dcall PropVariantClear(ptr)
PropVariantClear
167 stub CoCopyProxy # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
168 stub CoGetCallContext # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
169 stub CoGetInstanceFromFile # stdcall (ptr ptr ptr long wstr long ptr) return 0,ERR_NOTIMPLEMENTED
...
...
@@ -195,7 +195,7 @@ type win32
192 stub CreateErrorInfo
193 stub CreateObjrefMoniker
194 stub DllRegisterServer
195 st
ub
FreePropVariantArray
195 st
dcall FreePropVariantArray(long ptr)
FreePropVariantArray
196 stub GetErrorInfo
197 stub HACCEL_UserFree
198 stub HACCEL_UserMarshal
...
...
@@ -246,7 +246,7 @@ type win32
243 stub OleCreateLinkToFileEx
244 stub PropSysAllocString
245 stub PropSysFreeString
246 st
ub
PropVariantCopy
246 st
dcall PropVariantCopy(ptr ptr)
PropVariantCopy
247 stub SNB_UserFree
248 stub SNB_UserMarshal
249 stub SNB_UserSize
...
...
@@ -255,7 +255,7 @@ type win32
252 stub STGMEDIUM_UserMarshal
253 stub STGMEDIUM_UserSize
254 stub STGMEDIUM_UserUnmarshal
255 st
ub
SetErrorInfo
255 st
dcall SetErrorInfo(long ptr)
SetErrorInfo
256 stub StgCreateStorageEx
257 stub StgGetIFillLockBytesOnFile
258 stub StgGetIFillLockBytesOnILockBytes
...
...
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