msctf: Add definition of ITfSource interface.

oldstable
Aric Stewart 2009-02-02 10:25:36 -06:00 committed by Alexandre Julliard
parent e1014b3ea4
commit d09f4c0ab5
1 changed files with 16 additions and 0 deletions

View File

@ -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);
};