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
a6ff00c4
Commit
a6ff00c4
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 Imm{Create|Show|Destroy}SoftKeyboard.
parent
f9316b18
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
3 deletions
+37
-3
imm.c
dlls/imm32/imm.c
+30
-0
imm32.spec
dlls/imm32/imm32.spec
+3
-3
imm.h
include/ddk/imm.h
+4
-0
No files found.
dlls/imm32/imm.c
View file @
a6ff00c4
...
...
@@ -1839,6 +1839,36 @@ BOOL WINAPI ImmSetStatusWindowPos(HIMC hIMC, LPPOINT lpptPos)
}
/***********************************************************************
* ImmCreateSoftKeyboard(IMM32.@)
*/
HWND
WINAPI
ImmCreateSoftKeyboard
(
UINT
uType
,
UINT
hOwner
,
int
x
,
int
y
)
{
FIXME
(
"(%d, %d, %d, %d): stub
\n
"
,
uType
,
hOwner
,
x
,
y
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* ImmDestroySoftKeyboard(IMM32.@)
*/
BOOL
WINAPI
ImmDestroySoftKeyboard
(
HWND
hSoftWnd
)
{
FIXME
(
"(%p): stub
\n
"
,
hSoftWnd
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* ImmShowSoftKeyboard(IMM32.@)
*/
BOOL
WINAPI
ImmShowSoftKeyboard
(
HWND
hSoftWnd
,
int
nCmdShow
)
{
FIXME
(
"(%p, %d): stub
\n
"
,
hSoftWnd
,
nCmdShow
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* ImmSimulateHotKey (IMM32.@)
*/
BOOL
WINAPI
ImmSimulateHotKey
(
HWND
hWnd
,
DWORD
dwHotKeyID
)
...
...
dlls/imm32/imm32.spec
View file @
a6ff00c4
...
...
@@ -5,10 +5,10 @@
@ stdcall ImmConfigureIMEW(long long long ptr)
@ stdcall ImmCreateContext()
@ stdcall ImmCreateIMCC(long)
@ st
ub ImmCreateSoftKeyboard
@ st
dcall ImmCreateSoftKeyboard(long long long long)
@ stdcall ImmDestroyContext(long)
@ stdcall ImmDestroyIMCC(long)
@ st
ub ImmDestroySoftKeyboard
@ st
dcall ImmDestroySoftKeyboard(long)
@ stdcall ImmDisableIME(long)
@ stdcall ImmDisableIme(long) ImmDisableIME
@ stub ImmEnumInputContext
...
...
@@ -96,7 +96,7 @@
#@ stdcall ImmSetHotKey(long long long ptr) user32.CliImmSetHotKey
@ stdcall ImmSetOpenStatus(long long)
@ stdcall ImmSetStatusWindowPos(long ptr)
@ st
ub ImmShowSoftKeyboard
@ st
dcall ImmShowSoftKeyboard(long long)
@ stdcall ImmSimulateHotKey(long long)
@ stub ImmSystemHandler
@ stdcall ImmTranslateMessage(long long long long)
...
...
include/ddk/imm.h
View file @
a6ff00c4
...
...
@@ -145,6 +145,10 @@ LRESULT WINAPI ImmRequestMessageA(HIMC, WPARAM, LPARAM);
LRESULT
WINAPI
ImmRequestMessageW
(
HIMC
,
WPARAM
,
LPARAM
);
#define ImmRequestMessage WINELIB_NAME_AW(ImmRequestMessage);
HWND
WINAPI
ImmCreateSoftKeyboard
(
UINT
,
UINT
,
int
,
int
);
BOOL
WINAPI
ImmDestroySoftKeyboard
(
HWND
);
BOOL
WINAPI
ImmShowSoftKeyboard
(
HWND
,
int
);
BOOL
WINAPI
ImeInquire
(
LPIMEINFO
,
LPWSTR
,
LPCWSTR
lpszOptions
);
BOOL
WINAPI
ImeConfigure
(
HKL
,
HWND
,
DWORD
,
LPVOID
);
DWORD
WINAPI
ImeConversionList
(
HIMC
,
LPCWSTR
,
LPCANDIDATELIST
,
DWORD
,
UINT
);
...
...
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