Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
333ab2b4
Commit
333ab2b4
authored
Dec 04, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
Feb 15, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add Imm(Get|Set)HotKey declarations.
parent
f371309f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
imm.c
dlls/imm32/imm.c
+1
-1
immdev.h
include/immdev.h
+2
-0
No files found.
dlls/imm32/imm.c
View file @
333ab2b4
...
...
@@ -3116,7 +3116,7 @@ BOOL WINAPI ImmEnumInputContext(DWORD idThread, IMCENUMPROC lpfn, LPARAM lParam)
* ImmGetHotKey(IMM32.@)
*/
BOOL
WINAPI
ImmGetHotKey
(
DWORD
hotkey
,
UINT
*
modifiers
,
UINT
*
key
,
HKL
hkl
)
BOOL
WINAPI
ImmGetHotKey
(
DWORD
hotkey
,
UINT
*
modifiers
,
UINT
*
key
,
HKL
*
hkl
)
{
FIXME
(
"%lx, %p, %p, %p: stub
\n
"
,
hotkey
,
modifiers
,
key
,
hkl
);
return
FALSE
;
...
...
include/immdev.h
View file @
333ab2b4
...
...
@@ -158,6 +158,8 @@ DWORD WINAPI ImmGetIMCCSize(HIMCC);
#define NI_SETCANDIDATE_PAGESIZE 0x0017
#define NI_IMEMENUSELECTED 0x0018
BOOL
WINAPI
ImmGetHotKey
(
DWORD
,
UINT
*
,
UINT
*
,
HKL
*
);
BOOL
WINAPI
ImmSetHotKey
(
DWORD
,
UINT
,
UINT
,
HKL
);
BOOL
WINAPI
ImmGenerateMessage
(
HIMC
);
LRESULT
WINAPI
ImmRequestMessageA
(
HIMC
,
WPARAM
,
LPARAM
);
LRESULT
WINAPI
ImmRequestMessageW
(
HIMC
,
WPARAM
,
LPARAM
);
...
...
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