use real_ functions
This commit is contained in:
parent
871ccbf196
commit
c8d4cd997e
2 changed files with 4 additions and 4 deletions
|
@ -724,7 +724,7 @@ SHORT WINAPI fake_GetKeyState(int nVirtKey)
|
|||
return 0;
|
||||
}
|
||||
|
||||
return GetKeyState(nVirtKey);
|
||||
return real_GetKeyState(nVirtKey);
|
||||
}
|
||||
|
||||
SHORT WINAPI fake_GetAsyncKeyState(int vKey)
|
||||
|
@ -735,7 +735,7 @@ SHORT WINAPI fake_GetAsyncKeyState(int vKey)
|
|||
return 0;
|
||||
}
|
||||
|
||||
return GetAsyncKeyState(vKey);
|
||||
return real_GetAsyncKeyState(vKey);
|
||||
}
|
||||
|
||||
int WINAPI fake_GetDeviceCaps(HDC hdc, int index)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue