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
0e90213e
Commit
0e90213e
authored
May 26, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
May 26, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Silence some unnecessary FIXMEs.
parent
13e94072
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
13 deletions
+3
-13
ime.c
dlls/imm32/ime.c
+1
-6
imm.c
dlls/imm32/imm.c
+2
-7
No files found.
dlls/imm32/ime.c
View file @
0e90213e
...
...
@@ -396,7 +396,6 @@ static LRESULT ime_ui_notify( HIMC himc, HWND hwnd, WPARAM wparam, LPARAM lparam
case
IMN_WINE_SET_COMP_STRING
:
return
ime_set_comp_string
(
himc
,
lparam
);
default:
FIXME
(
"himc %p, hwnd %p, wparam %s, lparam %#Ix stub!
\n
"
,
hwnd
,
himc
,
debugstr_imn
(
wparam
),
lparam
);
return
0
;
}
}
...
...
@@ -503,8 +502,7 @@ BOOL WINAPI ImeSelect( HIMC himc, BOOL select )
BOOL
WINAPI
ImeSetActiveContext
(
HIMC
himc
,
BOOL
flag
)
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
"himc %p, flag %#x stub!
\n
"
,
himc
,
flag
);
TRACE
(
"himc %p, flag %#x stub!
\n
"
,
himc
,
flag
);
return
TRUE
;
}
...
...
@@ -661,9 +659,6 @@ BOOL WINAPI NotifyIME( HIMC himc, DWORD action, DWORD index, DWORD value )
}
NtUserNotifyIMEStatus
(
ctx
->
hWnd
,
ctx
->
fOpen
);
break
;
default:
FIXME
(
"himc %p, action %#lx, index %#lx, value %#lx stub!
\n
"
,
himc
,
action
,
index
,
value
);
break
;
}
break
;
...
...
dlls/imm32/imm.c
View file @
0e90213e
...
...
@@ -2337,14 +2337,9 @@ BOOL WINAPI ImmRegisterWordW( HKL hkl, const WCHAR *readingW, DWORD style, const
/***********************************************************************
* ImmReleaseContext (IMM32.@)
*/
BOOL
WINAPI
ImmReleaseContext
(
HWND
hWnd
,
HIMC
hIMC
)
BOOL
WINAPI
ImmReleaseContext
(
HWND
hwnd
,
HIMC
himc
)
{
static
BOOL
shown
=
FALSE
;
if
(
!
shown
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
hWnd
,
hIMC
);
shown
=
TRUE
;
}
TRACE
(
"hwnd %p, himc %p
\n
"
,
hwnd
,
himc
);
return
TRUE
;
}
...
...
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