mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-19 17:06:04 -07:00
Merge branch 'packtouchhit' into 'master'
user32: Add PackTouchHitTestingProximityEvaluation stub. See merge request wine/wine!6794
This commit is contained in:
commit
860856b5ee
2 changed files with 13 additions and 1 deletions
|
@ -484,6 +484,18 @@ BOOL WINAPI RegisterTouchHitTestingWindow(HWND hwnd, ULONG value)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
* PackTouchHitTestingProximityEvaluation [USER32.@]
|
||||
*/
|
||||
LRESULT WINAPI PackTouchHitTestingProximityEvaluation(const TOUCH_HIT_TESTING_INPUT *input,
|
||||
const TOUCH_HIT_TESTING_PROXIMITY_EVALUATION *proximity)
|
||||
{
|
||||
FIXME("(%p,%p): stub\n", input, proximity);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* GetPointerType [USER32.@]
|
||||
*/
|
||||
|
|
|
@ -895,7 +895,7 @@
|
|||
@ stdcall OpenWindowStationA(str long long)
|
||||
@ stdcall OpenWindowStationW(wstr long long)
|
||||
@ stdcall PackDDElParam(long long long)
|
||||
# @ stub PackTouchHitTestingProximityEvaluation
|
||||
@ stdcall PackTouchHitTestingProximityEvaluation(ptr ptr)
|
||||
@ stdcall PaintDesktop(long)
|
||||
# @ stub PaintMenuBar
|
||||
# @ stub PaintMonitor
|
||||
|
|
Loading…
Reference in a new issue