mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
[MSHTML] Fix an MSVC warning about HTMLInputElementImpl_fire_event()
"...\htmlinput.c(1303) : warning C4028: formal parameter 2 different from declaration" Temporary fix, until WINESYNC replaces this function. CORE-7538
This commit is contained in:
parent
c219be9409
commit
2e7b73dc75
1 changed files with 4 additions and 0 deletions
|
@ -1215,7 +1215,11 @@ static HRESULT HTMLInputElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
|
|||
return HTMLElement_QI(&This->element.node, riid, ppv);
|
||||
}
|
||||
|
||||
#ifndef __REACTOS__
|
||||
static HRESULT HTMLInputElementImpl_fire_event(HTMLDOMNode *iface, eventid_t eid, BOOL *handled)
|
||||
#else
|
||||
static HRESULT HTMLInputElementImpl_fire_event(HTMLDOMNode *iface, DWORD eid, BOOL *handled)
|
||||
#endif
|
||||
{
|
||||
HTMLInputElement *This = impl_from_HTMLDOMNode(iface);
|
||||
|
||||
|
|
Loading…
Reference in a new issue