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
8bd19cc9
Commit
8bd19cc9
authored
Feb 20, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Feb 20, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msctf: Implement ITfInputProcessorProfiles::Unregister.
parent
dd298d56
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
inputprocessor.c
dlls/msctf/inputprocessor.c
+12
-2
inputprocessor.c
dlls/msctf/tests/inputprocessor.c
+1
-1
No files found.
dlls/msctf/inputprocessor.c
View file @
8bd19cc9
...
...
@@ -152,9 +152,19 @@ static HRESULT WINAPI InputProcessorProfiles_Register(
static
HRESULT
WINAPI
InputProcessorProfiles_Unregister
(
ITfInputProcessorProfiles
*
iface
,
REFCLSID
rclsid
)
{
WCHAR
buf
[
39
];
WCHAR
fullkey
[
68
];
InputProcessorProfiles
*
This
=
(
InputProcessorProfiles
*
)
iface
;
FIXME
(
"STUB:(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
TRACE
(
"(%p) %s
\n
"
,
This
,
debugstr_guid
(
rclsid
));
StringFromGUID2
(
rclsid
,
buf
,
39
);
sprintfW
(
fullkey
,
szwTipfmt
,
szwSystemTIPKey
,
buf
);
RegDeleteTreeW
(
HKEY_LOCAL_MACHINE
,
fullkey
);
RegDeleteTreeW
(
HKEY_CURRENT_USER
,
fullkey
);
return
S_OK
;
}
static
HRESULT
WINAPI
InputProcessorProfiles_AddLanguageProfile
(
...
...
dlls/msctf/tests/inputprocessor.c
View file @
8bd19cc9
...
...
@@ -68,7 +68,7 @@ static void test_Unregister(void)
{
HRESULT
hr
;
hr
=
ITfInputProcessorProfiles_Unregister
(
g_ipp
,
&
CLSID_FakeService
);
todo_wine
ok
(
SUCCEEDED
(
hr
),
"Unable to unregister text service(%x)
\n
"
,
hr
);
ok
(
SUCCEEDED
(
hr
),
"Unable to unregister text service(%x)
\n
"
,
hr
);
}
START_TEST
(
inputprocessor
)
...
...
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