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
89cdae2e
Commit
89cdae2e
authored
Feb 21, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Mar 09, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Implement stubs for ImmFreeLayout and ImmLoadIME.
parent
ac265bf3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
imm.c
dlls/imm32/imm.c
+12
-0
imm32.spec
dlls/imm32/imm32.spec
+2
-2
No files found.
dlls/imm32/imm.c
View file @
89cdae2e
...
...
@@ -478,6 +478,18 @@ static HMODULE load_graphics_driver(void)
return
ret
;
}
BOOL
WINAPI
ImmFreeLayout
(
HKL
hkl
)
{
FIXME
(
"hkl %p stub!
\n
"
,
hkl
);
return
FALSE
;
}
BOOL
WINAPI
ImmLoadIME
(
HKL
hkl
)
{
FIXME
(
"hkl %p stub!
\n
"
,
hkl
);
return
FALSE
;
}
/* ImmHkl loading and freeing */
#define LOAD_FUNCPTR(f) if((ptr->p##f = (LPVOID)GetProcAddress(ptr->hIME, #f)) == NULL){WARN("Can't find function %s in ime\n", #f);}
static
ImmHkl
*
IMM_GetImmHkl
(
HKL
hkl
)
...
...
dlls/imm32/imm32.spec
View file @
89cdae2e
...
...
@@ -18,7 +18,7 @@
@ stdcall ImmEnumRegisterWordW(long ptr wstr long wstr ptr)
@ stdcall ImmEscapeA(long long long ptr)
@ stdcall ImmEscapeW(long long long ptr)
@ st
ub ImmFreeLayout
@ st
dcall ImmFreeLayout(long)
@ stdcall ImmGenerateMessage(ptr)
@ stdcall ImmGetCandidateListA(long long ptr long)
@ stdcall ImmGetCandidateListCountA(long ptr)
...
...
@@ -66,7 +66,7 @@
@ stdcall ImmIsIME(long)
@ stdcall ImmIsUIMessageA(long long long long)
@ stdcall ImmIsUIMessageW(long long long long)
@ st
ub ImmLoadIME
@ st
dcall ImmLoadIME(long)
@ stub ImmLoadLayout
@ stub ImmLockClientImc
@ stdcall ImmLockIMC(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