Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
42d55786
Commit
42d55786
authored
Dec 08, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Dec 08, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation for GetLastInputInfo.
parent
a1f3756d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
message.c
dlls/user/message.c
+9
-0
user32.spec
dlls/user/user32.spec
+1
-0
winuser.h
include/winuser.h
+7
-0
No files found.
dlls/user/message.c
View file @
42d55786
...
...
@@ -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
;
}
dlls/user/user32.spec
View file @
42d55786
...
...
@@ -263,6 +263,7 @@
@ stdcall GetKeyboardState(ptr)
@ stdcall GetKeyboardType(long)
@ stdcall GetLastActivePopup(long)
@ stdcall GetLastInputInfo(ptr)
# @ stub GetListBoxInfo
@ stdcall GetMenu(long)
# @ stub GetMenuBarInfo
...
...
include/winuser.h
View file @
42d55786
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment