Skip to content
Snippets Groups Projects
Commit 42d55786 authored by Michael McCormack's avatar Michael McCormack Committed by Alexandre Julliard
Browse files

Stub implementation for GetLastInputInfo.

parent a1f3756d
No related branches found
No related tags found
No related merge requests found
......@@ -2657,3 +2657,12 @@ BOOL WINAPI IsHungAppWindow( HWND hWnd )
DWORD dwResult;
return !SendMessageTimeoutA(hWnd, WM_NULL, 0, 0, SMTO_ABORTIFHUNG, 5000, &dwResult);
}
/******************************************************************
* GetLastInputInfo (USER32.@)
*/
BOOL WINAPI GetLastInputInfo(PLASTINPUTINFO plii)
{
FIXME("%p\n", plii);
return FALSE;
}
......@@ -263,6 +263,7 @@
@ stdcall GetKeyboardState(ptr)
@ stdcall GetKeyboardType(long)
@ stdcall GetLastActivePopup(long)
@ stdcall GetLastInputInfo(ptr)
# @ stub GetListBoxInfo
@ stdcall GetMenu(long)
# @ stub GetMenuBarInfo
......
......@@ -3604,6 +3604,12 @@ typedef struct tagTITLEBARINFO {
DWORD rgstate[CCHILDREN_TITLEBAR+1];
} TITLEBARINFO, *PTITLEBARINFO, *LPTITLEBARINFO;
/* used by GetLastInputInfo */
typedef struct tagLASTINPUTINFO {
UINT cbSize;
DWORD dwTime;
} LASTINPUTINFO, *PLASTINPUTINFO;
/* SetWinEventHook() flags */
#define WINEVENT_OUTOFCONTEXT 0x0
#define WINEVENT_SKIPOWNTHREAD 0x1
......@@ -4192,6 +4198,7 @@ BOOL WINAPI GetKeyboardLayoutNameW(LPWSTR);
#define GetKeyboardLayoutName WINELIB_NAME_AW(GetKeyboardLayoutName)
SHORT WINAPI GetKeyState(INT);
HWND WINAPI GetLastActivePopup(HWND);
BOOL WINAPI GetLastInputInfo(PLASTINPUTINFO);
HMENU WINAPI GetMenu(HWND);
INT WINAPI GetMenuItemCount(HMENU);
UINT WINAPI GetMenuItemID(HMENU,INT);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment