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
58e4febe
Commit
58e4febe
authored
Jan 24, 2012
by
Austin English
Committed by
Alexandre Julliard
Jan 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Add a stub for ImmGetHotKey.
parent
9a2c2ed5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
imm.c
dlls/imm32/imm.c
+10
-0
imm32.spec
dlls/imm32/imm32.spec
+1
-1
No files found.
dlls/imm32/imm.c
View file @
58e4febe
...
...
@@ -2845,3 +2845,13 @@ BOOL WINAPI ImmEnumInputContext(DWORD idThread, IMCENUMPROC lpfn, LPARAM lParam)
FIXME
(
"Stub
\n
"
);
return
FALSE
;
}
/***********************************************************************
* ImmGetHotKey(IMM32.@)
*/
BOOL
WINAPI
ImmGetHotKey
(
DWORD
hotkey
,
UINT
*
modifiers
,
UINT
*
key
,
HKL
hkl
)
{
FIXME
(
"%x, %p, %p, %p: stub
\n
"
,
hotkey
,
modifiers
,
key
,
hkl
);
return
FALSE
;
}
dlls/imm32/imm32.spec
View file @
58e4febe
...
...
@@ -39,7 +39,7 @@
@ stdcall ImmGetDescriptionW(long ptr long)
@ stdcall ImmGetGuideLineA(long long ptr long)
@ stdcall ImmGetGuideLineW(long long ptr long)
@ st
ub ImmGetHotKey
@ st
dcall ImmGetHotKey(long ptr ptr ptr)
@ stdcall ImmGetIMCCLockCount(long)
@ stdcall ImmGetIMCCSize(long)
@ stdcall ImmGetIMCLockCount(long)
...
...
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