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
096643df
Commit
096643df
authored
Feb 05, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Feb 06, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msctf: Stub implementation of SetInputScopes.
parent
b7a47e72
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
msctf.c
dlls/msctf/msctf.c
+17
-0
msctf.spec
dlls/msctf/msctf.spec
+1
-1
No files found.
dlls/msctf/msctf.c
View file @
096643df
...
...
@@ -233,3 +233,20 @@ HRESULT WINAPI SetInputScope(HWND hwnd, INT inputscope)
FIXME
(
"STUB: %p %i
\n
"
,
hwnd
,
inputscope
);
return
S_OK
;
}
/***********************************************************************
* SetInputScopes(MSCTF.@)
*/
HRESULT
WINAPI
SetInputScopes
(
HWND
hwnd
,
const
INT
*
pInputScopes
,
UINT
cInputScopes
,
WCHAR
**
ppszPhraseList
,
UINT
cPhrases
,
WCHAR
*
pszRegExp
,
WCHAR
*
pszSRGS
)
{
int
i
;
FIXME
(
"STUB: %p ... %s %s
\n
"
,
hwnd
,
debugstr_w
(
pszRegExp
),
debugstr_w
(
pszSRGS
));
for
(
i
=
0
;
i
<
cInputScopes
;
i
++
)
TRACE
(
"
\t
Scope[%i] = %i
\n
"
,
i
,
pInputScopes
[
i
]);
for
(
i
=
0
;
i
<
cPhrases
;
i
++
)
TRACE
(
"
\t
Phrase[%i] = %s
\n
"
,
i
,
debugstr_w
(
ppszPhraseList
[
i
]));
return
S_OK
;
}
dlls/msctf/msctf.spec
View file @
096643df
...
...
@@ -4,7 +4,7 @@
@ stdcall -private DllUnregisterServer()
@ stdcall SetInputScope(long long)
@ stub SetInputScopeXML
@ st
ub SetInputScopes
@ st
dcall SetInputScopes(long ptr long ptr long wstr wstr)
@ stub TF_CUASAppFix
@ stub TF_CheckThreadInputIdle
@ stub TF_ClearLangBarAddIns
...
...
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