78 lines
2.1 KiB
Plaintext
78 lines
2.1 KiB
Plaintext
/*
|
|
* Copyright 2008 Aric Stewart, CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef DO_NO_IMPORTS
|
|
import "oaidl.idl";
|
|
import "comcat.idl";
|
|
/* import "textstor.idl"; */
|
|
/* import "ctfutb.idl"; */
|
|
#endif
|
|
|
|
cpp_quote("EXTERN_C const CLSID CLSID_TF_ThreadMgr;")
|
|
|
|
typedef [uuid(de403c21-89fd-4f85-8b87-64584d063fbc)] DWORD TfClientId;
|
|
|
|
interface ITfDocumentMgr;
|
|
interface IEnumTfDocumentMgrs;
|
|
interface ITfFunctionProvider;
|
|
interface IEnumTfFunctionProviders;
|
|
interface ITfCompartmentMgr;
|
|
|
|
[
|
|
object,
|
|
uuid(aa80e801-2021-11d2-93e0-0060b067b86e),
|
|
pointer_default(unique)
|
|
]
|
|
interface ITfThreadMgr: IUnknown
|
|
{
|
|
HRESULT Activate(
|
|
[out] TfClientId *ptid);
|
|
|
|
HRESULT Deactivate();
|
|
|
|
HRESULT CreateDocumentMgr(
|
|
[out] ITfDocumentMgr **ppdim);
|
|
|
|
HRESULT EnumDocumentMgrs(
|
|
[out] IEnumTfDocumentMgrs **ppEnum);
|
|
|
|
HRESULT GetFocus(
|
|
[out] ITfDocumentMgr **ppdimFocus);
|
|
|
|
HRESULT SetFocus(
|
|
[in] ITfDocumentMgr *pdimFocus);
|
|
|
|
HRESULT AssociateFocus(
|
|
[in] HWND hwnd,
|
|
[in, unique] ITfDocumentMgr *pdimNew,
|
|
[out] ITfDocumentMgr **ppdimPrev);
|
|
|
|
HRESULT IsThreadFocus(
|
|
[out] BOOL *pfThreadFocus);
|
|
|
|
HRESULT GetFunctionProvider(
|
|
[in] REFCLSID clsid,
|
|
[out] ITfFunctionProvider **ppFuncProv);
|
|
|
|
HRESULT EnumFunctionProviders(
|
|
[out] IEnumTfFunctionProviders **ppEnum);
|
|
|
|
HRESULT GetGlobalCompartment(
|
|
[out] ITfCompartmentMgr **ppCompMgr);
|
|
};
|