mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
EmulatorPkg: Update MMTimerThread() signature
In the early 2000s as part of the x64 transition the definition for LPTIMECALLBACK changed from (UINT, UINT, DWORD, DWORD, DWORD) to (UINT, UINT, DWORD_PTR, DWORD_PTR, DWORD_PTR). However, the MMTimerThread() function was never updated to the new signature. Since the implementation does not use the last three parameters, this issue has not been caught until now. Cc: Andrew Fish <afish@apple.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Nate DeSimone <nathaniel.l.desimone@intel.com>
This commit is contained in:
parent
3114fd8ed7
commit
5a2490df0e
@ -264,11 +264,11 @@ volatile BOOLEAN mInterruptEnabled = FALSE;
|
||||
VOID
|
||||
CALLBACK
|
||||
MMTimerThread (
|
||||
UINT wTimerID,
|
||||
UINT msg,
|
||||
DWORD dwUser,
|
||||
DWORD dw1,
|
||||
DWORD dw2
|
||||
UINT wTimerID,
|
||||
UINT msg,
|
||||
DWORD_PTR dwUser,
|
||||
DWORD_PTR dw1,
|
||||
DWORD_PTR dw2
|
||||
)
|
||||
{
|
||||
UINT32 CurrentTick;
|
||||
|
Loading…
x
Reference in New Issue
Block a user