Removed patch on EmuPulseEvent
as NtPulseEvent is all that's needed for it.
This commit is contained in:
parent
7779ac401c
commit
a4420eb238
|
@ -1111,24 +1111,6 @@ DWORD WINAPI XTL::EmuSignalObjectAndWait
|
|||
RETURN(dwRet);
|
||||
}
|
||||
|
||||
// ******************************************************************
|
||||
// * func: EmuPulseEvent
|
||||
// ******************************************************************
|
||||
BOOL WINAPI XTL::EmuPulseEvent
|
||||
(
|
||||
HANDLE hEvent
|
||||
)
|
||||
{
|
||||
LOG_FUNC_ONE_ARG(hEvent);
|
||||
|
||||
// TODO: This function might be a bit too high level. If it is,
|
||||
// feel free to implement NtPulseEvent in EmuKrnl.cpp
|
||||
|
||||
BOOL bRet = PulseEvent( hEvent );
|
||||
|
||||
RETURN(bRet);
|
||||
}
|
||||
|
||||
// ******************************************************************
|
||||
// * func: timeSetEvent
|
||||
// ******************************************************************
|
||||
|
|
|
@ -670,11 +670,6 @@ DWORD WINAPI EmuSignalObjectAndWait
|
|||
BOOL bAlertable
|
||||
);
|
||||
|
||||
// ******************************************************************
|
||||
// * func: EmuPulseEvent
|
||||
// ******************************************************************
|
||||
BOOL WINAPI EmuPulseEvent( HANDLE hEvent );
|
||||
|
||||
// ******************************************************************
|
||||
// * func: EmuCreateSemaphore
|
||||
// ******************************************************************
|
||||
|
|
|
@ -1219,8 +1219,6 @@ OOVPATable XAPI_1_0_3911[] = {
|
|||
OOVPA_TABLE_PATCH(XInputGetCapabilities_1_0_3911, XTL::EmuXInputGetCapabilities),
|
||||
// SignalObjectAndWait
|
||||
OOVPA_TABLE_PATCH(SignalObjectAndWait_1_0_3911, XTL::EmuSignalObjectAndWait),
|
||||
// PulseEvent
|
||||
OOVPA_TABLE_PATCH(PulseEvent_1_0_3911, XTL::EmuPulseEvent),
|
||||
// QueueUserAPC
|
||||
OOVPA_TABLE_PATCH(QueueUserAPC_1_0_3911, XTL::EmuQueueUserAPC),
|
||||
// lstrcmpiW
|
||||
|
|
Loading…
Reference in New Issue