Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jacob Pfeiffer
wine
Commits
76cc171f
Commit
76cc171f
authored
25 years ago
by
Eric Pouech
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added stubs for SetErrorInfo, PropVariantClear, PropVariantCopy,
FreePropVariantArray.
parent
5f6080ee
No related branches found
Branches containing commit
Tags
wine-960606
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/ole32/ole2stubs.c
+43
-0
43 additions, 0 deletions
dlls/ole32/ole2stubs.c
dlls/ole32/ole32.spec
+4
-4
4 additions, 4 deletions
dlls/ole32/ole32.spec
with
47 additions
and
4 deletions
dlls/ole32/ole2stubs.c
+
43
−
0
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
;
}
This diff is collapsed.
Click to expand it.
dlls/ole32/ole32.spec
+
4
−
4
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment