Commit 42d55786 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Stub implementation for GetLastInputInfo.

parent a1f3756d
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment