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
8f85b054
Commit
8f85b054
authored
Jun 02, 2011
by
Austin English
Committed by
Alexandre Julliard
Jun 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Add a stub for ImmEnumInputContext.
parent
16945559
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
imm.c
dlls/imm32/imm.c
+10
-0
imm32.spec
dlls/imm32/imm32.spec
+1
-1
imm.h
include/imm.h
+3
-0
No files found.
dlls/imm32/imm.c
View file @
8f85b054
...
@@ -2821,3 +2821,13 @@ BOOL WINAPI ImmDisableTextFrameService(DWORD idThread)
...
@@ -2821,3 +2821,13 @@ BOOL WINAPI ImmDisableTextFrameService(DWORD idThread)
FIXME
(
"Stub
\n
"
);
FIXME
(
"Stub
\n
"
);
return
FALSE
;
return
FALSE
;
}
}
/***********************************************************************
* ImmEnumInputContext(IMM32.@)
*/
BOOL
WINAPI
ImmEnumInputContext
(
DWORD
idThread
,
IMCENUMPROC
lpfn
,
LPARAM
lParam
)
{
FIXME
(
"Stub
\n
"
);
return
FALSE
;
}
dlls/imm32/imm32.spec
View file @
8f85b054
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
@ stdcall ImmDisableIME(long)
@ stdcall ImmDisableIME(long)
@ stdcall ImmDisableIme(long) ImmDisableIME
@ stdcall ImmDisableIme(long) ImmDisableIME
@ stdcall ImmDisableTextFrameService(long)
@ stdcall ImmDisableTextFrameService(long)
@ st
ub ImmEnumInputContext
@ st
dcall ImmEnumInputContext(long ptr long)
@ stdcall ImmEnumRegisterWordA(long ptr str long str ptr)
@ stdcall ImmEnumRegisterWordA(long ptr str long str ptr)
@ stdcall ImmEnumRegisterWordW(long ptr wstr long wstr ptr)
@ stdcall ImmEnumRegisterWordW(long ptr wstr long wstr ptr)
@ stdcall ImmEscapeA(long long long ptr)
@ stdcall ImmEscapeA(long long long ptr)
...
...
include/imm.h
View file @
8f85b054
...
@@ -127,6 +127,8 @@ typedef struct _tagCOMPOSITIONFORM
...
@@ -127,6 +127,8 @@ typedef struct _tagCOMPOSITIONFORM
RECT
rcArea
;
RECT
rcArea
;
}
COMPOSITIONFORM
,
*
LPCOMPOSITIONFORM
;
}
COMPOSITIONFORM
,
*
LPCOMPOSITIONFORM
;
typedef
BOOL
(
CALLBACK
*
IMCENUMPROC
)(
HIMC
,
LPARAM
);
/* wParam for WM_IME_CONTROL */
/* wParam for WM_IME_CONTROL */
#define IMC_GETCANDIDATEPOS 0x0007
#define IMC_GETCANDIDATEPOS 0x0007
#define IMC_SETCANDIDATEPOS 0x0008
#define IMC_SETCANDIDATEPOS 0x0008
...
@@ -482,6 +484,7 @@ BOOL WINAPI ImmConfigureIMEW(HKL, HWND, DWORD, LPVOID);
...
@@ -482,6 +484,7 @@ BOOL WINAPI ImmConfigureIMEW(HKL, HWND, DWORD, LPVOID);
HIMC
WINAPI
ImmCreateContext
(
void
);
HIMC
WINAPI
ImmCreateContext
(
void
);
BOOL
WINAPI
ImmDestroyContext
(
HIMC
hIMC
);
BOOL
WINAPI
ImmDestroyContext
(
HIMC
hIMC
);
BOOL
WINAPI
ImmDisableIME
(
DWORD
idThread
);
BOOL
WINAPI
ImmDisableIME
(
DWORD
idThread
);
BOOL
WINAPI
ImmEnumInputContext
(
DWORD
,
IMCENUMPROC
,
LPARAM
);
UINT
WINAPI
ImmEnumRegisterWordA
(
HKL
,
REGISTERWORDENUMPROCA
,
LPCSTR
,
DWORD
,
LPCSTR
,
LPVOID
);
UINT
WINAPI
ImmEnumRegisterWordA
(
HKL
,
REGISTERWORDENUMPROCA
,
LPCSTR
,
DWORD
,
LPCSTR
,
LPVOID
);
UINT
WINAPI
ImmEnumRegisterWordW
(
HKL
,
REGISTERWORDENUMPROCW
,
LPCWSTR
,
DWORD
,
LPCWSTR
,
LPVOID
);
UINT
WINAPI
ImmEnumRegisterWordW
(
HKL
,
REGISTERWORDENUMPROCW
,
LPCWSTR
,
DWORD
,
LPCWSTR
,
LPVOID
);
#define ImmEnumRegisterWord WINELIB_NAME_AW(ImmEnumRegisterWord)
#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