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
f9316b18
Commit
f9316b18
authored
Apr 22, 2008
by
ByeongSik Jeon
Committed by
Alexandre Julliard
Apr 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Add stub and header of ImmRequestMessage.
parent
3229c3de
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
2 deletions
+27
-2
imm.c
dlls/imm32/imm.c
+20
-0
imm32.spec
dlls/imm32/imm32.spec
+2
-2
imm.h
include/ddk/imm.h
+3
-0
imm.h
include/imm.h
+2
-0
No files found.
dlls/imm32/imm.c
View file @
f9316b18
...
...
@@ -1573,6 +1573,26 @@ BOOL WINAPI ImmReleaseContext(HWND hWnd, HIMC hIMC)
}
/***********************************************************************
* ImmRequestMessageA(IMM32.@)
*/
LRESULT
WINAPI
ImmRequestMessageA
(
HIMC
hIMC
,
WPARAM
wParam
,
LPARAM
lParam
)
{
FIXME
(
"(%p %ld %ld): stub
\n
"
,
hIMC
,
wParam
,
wParam
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* ImmRequestMessageW(IMM32.@)
*/
LRESULT
WINAPI
ImmRequestMessageW
(
HIMC
hIMC
,
WPARAM
wParam
,
LPARAM
lParam
)
{
FIXME
(
"(%p %ld %ld): stub
\n
"
,
hIMC
,
wParam
,
wParam
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* ImmSetCandidateWindow (IMM32.@)
*/
BOOL
WINAPI
ImmSetCandidateWindow
(
...
...
dlls/imm32/imm32.spec
View file @
f9316b18
...
...
@@ -79,8 +79,8 @@
@ stdcall ImmRegisterWordA(long str long str)
@ stdcall ImmRegisterWordW(long wstr long wstr)
@ stdcall ImmReleaseContext(long long)
@ st
ub ImmRequestMessageA
@ st
ub ImmRequestMessageW
@ st
dcall ImmRequestMessageA(ptr long long)
@ st
dcall ImmRequestMessageW(ptr long long)
@ stub ImmSendIMEMessageExA
@ stub ImmSendIMEMessageExW
@ stub ImmSendMessageToActiveDefImeWndW
...
...
include/ddk/imm.h
View file @
f9316b18
...
...
@@ -141,6 +141,9 @@ DWORD WINAPI ImmGetIMCCSize(HIMCC);
#define NI_IMEMENUSELECTED 0x0018
BOOL
WINAPI
ImmGenerateMessage
(
HIMC
);
LRESULT
WINAPI
ImmRequestMessageA
(
HIMC
,
WPARAM
,
LPARAM
);
LRESULT
WINAPI
ImmRequestMessageW
(
HIMC
,
WPARAM
,
LPARAM
);
#define ImmRequestMessage WINELIB_NAME_AW(ImmRequestMessage);
BOOL
WINAPI
ImeInquire
(
LPIMEINFO
,
LPWSTR
,
LPCWSTR
lpszOptions
);
BOOL
WINAPI
ImeConfigure
(
HKL
,
HWND
,
DWORD
,
LPVOID
);
...
...
include/imm.h
View file @
f9316b18
...
...
@@ -394,6 +394,8 @@ typedef struct _tagCOMPOSITIONFORM
#define IMR_COMPOSITIONFONT 0x0003
#define IMR_RECONVERTSTRING 0x0004
#define IMR_CONFIRMRECONVERTSTRING 0x0005
#define IMR_QUERYCHARPOSITION 0x0006
#define IMR_DOCUMENTFEED 0x0007
/* error code of ImmGetCompositionString */
...
...
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