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
Releases
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
Felix Münchhalfen
wine
Commits
04996dda
Commit
04996dda
authored
24 years ago
by
Chris Morgan
Committed by
Alexandre Julliard
24 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Stub CreateDispTypeInfo, CreateStdDispatch16 and CreateStdDispatch.
parent
10a04e74
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/oleaut32/ole2disp.c
+43
-3
43 additions, 3 deletions
dlls/oleaut32/ole2disp.c
dlls/oleaut32/ole2disp.spec
+1
-1
1 addition, 1 deletion
dlls/oleaut32/ole2disp.spec
dlls/oleaut32/oleaut32.spec
+2
-2
2 additions, 2 deletions
dlls/oleaut32/oleaut32.spec
with
46 additions
and
6 deletions
dlls/oleaut32/ole2disp.c
+
43
−
3
View file @
04996dda
...
...
@@ -325,17 +325,57 @@ int WINAPI SysStringByteLen(BSTR str)
}
/******************************************************************************
* CreateDispTypeInfo [OLE2DISP.31]
* CreateDispTypeInfo
16
[OLE2DISP.31]
*/
HRESULT
WINAPI
CreateDispTypeInfo16
(
INTERFACEDATA
*
pidata
,
LCID
lcid
,
ITypeInfo
**
pptinfo
)
{
ITypeInfo
**
pptinfo
)
{
FIXME
(
"(%p,%ld,%p),stub
\n
"
,
pidata
,
lcid
,
pptinfo
);
return
0
;
}
/******************************************************************************
* CreateDispTypeInfo [OLE2DISP.31]
*/
HRESULT
WINAPI
CreateDispTypeInfo
(
INTERFACEDATA
*
pidata
,
LCID
lcid
,
ITypeInfo
**
pptinfo
)
{
FIXME
(
"(%p,%ld,%p),stub
\n
"
,
pidata
,
lcid
,
pptinfo
);
return
0
;
}
/******************************************************************************
* CreateStdDispatch16 [OLE2DISP.32]
*/
HRESULT
WINAPI
CreateStdDispatch16
(
IUnknown
*
punkOuter
,
void
*
pvThis
,
ITypeInfo
*
ptinfo
,
IUnknown
**
ppunkStdDisp
)
{
FIXME
(
"(%p,%p,%p,%p),stub
\n
"
,
punkOuter
,
pvThis
,
ptinfo
,
ppunkStdDisp
);
return
0
;
}
/******************************************************************************
* CreateStdDispatch [OLE2DISP.32]
*/
HRESULT
WINAPI
CreateStdDispatch
(
IUnknown
*
punkOuter
,
void
*
pvThis
,
ITypeInfo
*
ptinfo
,
IUnknown
**
ppunkStdDisp
)
{
FIXME
(
"(%p,%p,%p,%p),stub
\n
"
,
punkOuter
,
pvThis
,
ptinfo
,
ppunkStdDisp
);
return
0
;
}
/******************************************************************************
* RegisterActiveObject [OLE2DISP.35]
*/
...
...
This diff is collapsed.
Click to expand it.
dlls/oleaut32/ole2disp.spec
+
1
−
1
View file @
04996dda
...
...
@@ -33,7 +33,7 @@ owner oleaut32
29 stub DISPGETIDSOFNAMES
30 stub DISPINVOKE
31 pascal CreateDispTypeInfo(ptr long ptr) CreateDispTypeInfo16
32
stub CREATESTDDISPATCH
32
pascal CreateStdDispatch(ptr ptr ptr ptr) CreateStdDispatch16
33 stub _IID_IDISPATCH
34 stub _IID_IENUMVARIANT
35 pascal RegisterActiveObject(ptr ptr long ptr) RegisterActiveObject16
...
...
This diff is collapsed.
Click to expand it.
dlls/oleaut32/oleaut32.spec
+
2
−
2
View file @
04996dda
...
...
@@ -36,8 +36,8 @@ import kernel32.dll
28 stub DispGetParam
29 stub DispGetIDsOfNames
30 stub DispInvoke
31 st
ub
CreateDispTypeInfo
32 st
ub
CreateStdDispatch
31 st
dcall CreateDispTypeInfo(ptr long ptr)
CreateDispTypeInfo
32 st
dcall CreateStdDispatch(ptr ptr ptr ptr)
CreateStdDispatch
33 stdcall RegisterActiveObject(ptr ptr long ptr) RegisterActiveObject
34 stdcall RevokeActiveObject(long ptr) RevokeActiveObject
35 stdcall GetActiveObject(ptr ptr ptr) GetActiveObject
...
...
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