Commit d09f4c0a authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

msctf: Add definition of ITfSource interface.

parent e1014b3e
......@@ -224,3 +224,19 @@ interface ITfContext : IUnknown
[out] ITfRangeBackup **ppBackup);
};
[
object,
uuid(4ea48a35-60ae-446f-8fd6-e6a8d82459f7),
pointer_default(unique)
]
interface ITfSource : IUnknown
{
HRESULT AdviseSink(
[in] REFIID riid,
[in, iid_is(riid)] IUnknown *punk,
[out] DWORD *pdwCookie);
HRESULT UnadviseSink(
[in] DWORD dwCookie);
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment