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
231f2594
Commit
231f2594
authored
Jan 29, 2002
by
Eric Kohl
Committed by
Alexandre Julliard
Jan 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added ImmDisableIME stub.
parent
08af06c1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
imm.c
dlls/imm32/imm.c
+11
-0
imm32.spec
dlls/imm32/imm32.spec
+1
-1
imm.h
include/imm.h
+1
-0
No files found.
dlls/imm32/imm.c
View file @
231f2594
...
...
@@ -51,6 +51,17 @@ BOOL WINAPI ImmConfigureIMEW(
}
/***********************************************************************
* ImmDisableIME (IMM32.@)
*/
BOOL
WINAPI
ImmDisableIME
(
DWORD
idThread
)
{
FIXME
(
"(idThread %lu): stub
\n
"
,
idThread
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* ImmEscapeA (IMM32.@)
*/
LRESULT
WINAPI
ImmEscapeA
(
...
...
dlls/imm32/imm32.spec
View file @
231f2594
...
...
@@ -22,7 +22,7 @@ debug_channels (imm)
@ stdcall ImmDestroyContext(long) ImmDestroyContext
@ stdcall ImmDestroyIMCC(long) ImmDestroyIMCC
@ stdcall ImmDestroySoftKeyboard(long) ImmDestroySoftKeyboard
@ st
ub
ImmDisableIME
@ st
dcall ImmDisableIME(long)
ImmDisableIME
@ stub ImmEnumInputContext
@ stdcall ImmEnumRegisterWordA(long ptr str long str ptr) ImmEnumRegisterWordA
@ stdcall ImmEnumRegisterWordW(long ptr wstr long wstr ptr) ImmEnumRegisterWordW
...
...
include/imm.h
View file @
231f2594
...
...
@@ -468,6 +468,7 @@ BOOL WINAPI ImmConfigureIMEW(HKL, HWND, DWORD, LPVOID);
#define ImmConfigureIME WINELIB_NAME_AW(ImmConfigureIME)
HIMC
WINAPI
ImmCreateContext
();
BOOL
WINAPI
ImmDestroyContext
(
HIMC
hIMC
);
BOOL
WINAPI
ImmDisableIME
(
DWORD
idThread
);
UINT
WINAPI
ImmEnumRegisterWordA
(
HKL
,
REGISTERWORDENUMPROCA
,
LPCSTR
,
DWORD
,
LPCSTR
,
LPVOID
);
UINT
WINAPI
ImmEnumRegisterWordW
(
HKL
,
REGISTERWORDENUMPROCW
,
LPCWSTR
,
DWORD
,
LPCWSTR
,
LPVOID
);
#define ImmEnumRegisterWord WINELIB_NAME_AW(ImmEnumRegisterWord)
...
...
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