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
2fdfe16c
Commit
2fdfe16c
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: Fix ImeInquire declaration.
parent
68ff9a94
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
imm.c
dlls/imm32/imm.c
+2
-2
ime.c
dlls/winemac.drv/ime.c
+1
-1
ime.c
dlls/winex11.drv/ime.c
+1
-2
immdev.h
include/immdev.h
+1
-1
No files found.
dlls/imm32/imm.c
View file @
2fdfe16c
...
...
@@ -62,7 +62,7 @@ typedef struct _tagImmHkl{
HWND
UIWnd
;
/* Function Pointers */
BOOL
(
WINAPI
*
pImeInquire
)(
IMEINFO
*
,
WCHAR
*
,
const
WCHAR
*
);
BOOL
(
WINAPI
*
pImeInquire
)(
IMEINFO
*
,
WCHAR
*
,
DWORD
);
BOOL
(
WINAPI
*
pImeConfigure
)(
HKL
,
HWND
,
DWORD
,
void
*
);
BOOL
(
WINAPI
*
pImeDestroy
)(
UINT
);
LRESULT
(
WINAPI
*
pImeEscape
)(
HIMC
,
UINT
,
void
*
);
...
...
@@ -508,7 +508,7 @@ static ImmHkl *IMM_GetImmHkl(HKL hkl)
if
(
ptr
->
hIME
)
{
LOAD_FUNCPTR
(
ImeInquire
);
if
(
!
ptr
->
pImeInquire
||
!
ptr
->
pImeInquire
(
&
ptr
->
imeInfo
,
ptr
->
imeClassName
,
NULL
))
if
(
!
ptr
->
pImeInquire
||
!
ptr
->
pImeInquire
(
&
ptr
->
imeInfo
,
ptr
->
imeClassName
,
0
))
{
FreeLibrary
(
ptr
->
hIME
);
ptr
->
hIME
=
NULL
;
...
...
dlls/winemac.drv/ime.c
View file @
2fdfe16c
...
...
@@ -1367,7 +1367,7 @@ static BOOL WINAPI register_classes( INIT_ONCE *once, void *param, void **contex
return
TRUE
;
}
BOOL
WINAPI
ImeInquire
(
LPIMEINFO
lpIMEInfo
,
LPWSTR
lpszUIClass
,
LPCWSTR
lpszOption
)
BOOL
WINAPI
ImeInquire
(
LPIMEINFO
lpIMEInfo
,
LPWSTR
lpszUIClass
,
DWORD
flags
)
{
static
INIT_ONCE
init_once
=
INIT_ONCE_STATIC_INIT
;
...
...
dlls/winex11.drv/ime.c
View file @
2fdfe16c
...
...
@@ -511,8 +511,7 @@ static void IME_AddToSelected(HIMC hIMC)
hSelectedFrom
[
hSelectedCount
-
1
]
=
hIMC
;
}
BOOL
WINAPI
ImeInquire
(
LPIMEINFO
lpIMEInfo
,
LPWSTR
lpszUIClass
,
LPCWSTR
lpszOption
)
BOOL
WINAPI
ImeInquire
(
LPIMEINFO
lpIMEInfo
,
LPWSTR
lpszUIClass
,
DWORD
flags
)
{
static
INIT_ONCE
init_once
=
INIT_ONCE_STATIC_INIT
;
...
...
include/immdev.h
View file @
2fdfe16c
...
...
@@ -154,7 +154,7 @@ 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
ImeInquire
(
LPIMEINFO
,
LPWSTR
,
DWORD
);
BOOL
WINAPI
ImeConfigure
(
HKL
,
HWND
,
DWORD
,
LPVOID
);
DWORD
WINAPI
ImeConversionList
(
HIMC
,
LPCWSTR
,
LPCANDIDATELIST
,
DWORD
,
UINT
);
BOOL
WINAPI
ImeDestroy
(
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