Reactos

[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

authored by

Serge Gautherie and committed by
Mark Jansen
2e7b73dc c219be94

+4
+4
dll/win32/mshtml/htmlinput.c
··· 1215 1215 return HTMLElement_QI(&This->element.node, riid, ppv); 1216 1216 } 1217 1217 1218 + #ifndef __REACTOS__ 1218 1219 static HRESULT HTMLInputElementImpl_fire_event(HTMLDOMNode *iface, eventid_t eid, BOOL *handled) 1220 + #else 1221 + static HRESULT HTMLInputElementImpl_fire_event(HTMLDOMNode *iface, DWORD eid, BOOL *handled) 1222 + #endif 1219 1223 { 1220 1224 HTMLInputElement *This = impl_from_HTMLDOMNode(iface); 1221 1225