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
71318320
Commit
71318320
authored
May 15, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Add a partial stub for IConnectionPoint_InvokeWithCancel.
parent
cce62569
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletion
+21
-1
ordinal.c
dlls/shlwapi/ordinal.c
+20
-0
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
No files found.
dlls/shlwapi/ordinal.c
View file @
71318320
...
@@ -2914,6 +2914,26 @@ static HRESULT SHLWAPI_InvokeByIID(
...
@@ -2914,6 +2914,26 @@ static HRESULT SHLWAPI_InvokeByIID(
}
}
/*************************************************************************
/*************************************************************************
* IConnectionPoint_InvokeWithCancel [SHLWAPI.283]
*/
HRESULT
WINAPI
IConnectionPoint_InvokeWithCancel
(
IConnectionPoint
*
iCP
,
DISPID
dispId
,
DISPPARAMS
*
dispParams
,
DWORD
unknown1
,
DWORD
unknown2
)
{
IID
iid
;
HRESULT
result
;
FIXME
(
"(%p)->(0x%x %p %x %x) partial stub
\n
"
,
iCP
,
dispId
,
dispParams
,
unknown1
,
unknown2
);
result
=
IConnectionPoint_GetConnectionInterface
(
iCP
,
&
iid
);
if
(
SUCCEEDED
(
result
))
result
=
SHLWAPI_InvokeByIID
(
iCP
,
&
iid
,
dispId
,
dispParams
);
return
result
;
}
/*************************************************************************
* @ [SHLWAPI.284]
* @ [SHLWAPI.284]
*
*
* IConnectionPoint_SimpleInvoke
* IConnectionPoint_SimpleInvoke
...
...
dlls/shlwapi/shlwapi.spec
View file @
71318320
...
@@ -280,7 +280,7 @@
...
@@ -280,7 +280,7 @@
280 stdcall -noname SHRegGetIntW(ptr wstr long)
280 stdcall -noname SHRegGetIntW(ptr wstr long)
281 stdcall -noname SHPackDispParamsV(ptr ptr long ptr)
281 stdcall -noname SHPackDispParamsV(ptr ptr long ptr)
282 varargs -noname SHPackDispParams(ptr ptr long)
282 varargs -noname SHPackDispParams(ptr ptr long)
283 st
ub -noname IConnectionPoint_InvokeWithCancel
283 st
dcall -noname IConnectionPoint_InvokeWithCancel(ptr long long long long)
284 stdcall -noname IConnectionPoint_SimpleInvoke(ptr long ptr)
284 stdcall -noname IConnectionPoint_SimpleInvoke(ptr long ptr)
285 stdcall -noname IConnectionPoint_OnChanged(ptr long)
285 stdcall -noname IConnectionPoint_OnChanged(ptr long)
286 varargs -noname IUnknown_CPContainerInvokeParam(ptr ptr long ptr long)
286 varargs -noname IUnknown_CPContainerInvokeParam(ptr ptr long ptr long)
...
...
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