2009-01-27 20:15:30 +00:00
|
|
|
/*
|
|
|
|
* Internal header for msctf.dll
|
|
|
|
*
|
|
|
|
* 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 __WINE_MSCTF_I_H
|
|
|
|
#define __WINE_MSCTF_I_H
|
2009-04-22 16:14:19 +00:00
|
|
|
|
|
|
|
#define COOKIE_MAGIC_TMSINK 0x0010
|
|
|
|
#define COOKIE_MAGIC_CONTEXTSINK 0x0020
|
2009-05-04 19:31:15 +00:00
|
|
|
#define COOKIE_MAGIC_GUIDATOM 0x0030
|
2009-05-12 17:50:00 +00:00
|
|
|
#define COOKIE_MAGIC_IPPSINK 0x0040
|
2009-05-20 19:46:44 +00:00
|
|
|
#define COOKIE_MAGIC_EDITCOOKIE 0x0050
|
2009-06-22 03:04:24 +00:00
|
|
|
#define COOKIE_MAGIC_COMPARTMENTSINK 0x0060
|
2009-04-22 16:14:19 +00:00
|
|
|
|
2009-02-02 16:24:47 +00:00
|
|
|
extern DWORD tlsIndex;
|
2009-05-07 19:28:00 +00:00
|
|
|
extern TfClientId processId;
|
2009-06-15 21:25:36 +00:00
|
|
|
extern ITfCompartmentMgr *globalCompartmentMgr;
|
2009-01-27 20:15:30 +00:00
|
|
|
|
|
|
|
extern HRESULT ThreadMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut);
|
2009-03-24 13:21:47 +00:00
|
|
|
extern HRESULT DocumentMgr_Constructor(ITfThreadMgrEventSink*, ITfDocumentMgr **ppOut);
|
2009-06-17 08:00:03 +00:00
|
|
|
extern HRESULT Context_Constructor(TfClientId tidOwner, IUnknown *punk, ITfDocumentMgr *mgr, ITfContext **ppOut, TfEditCookie *pecTextStore);
|
2009-02-03 19:17:04 +00:00
|
|
|
extern HRESULT InputProcessorProfiles_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut);
|
2009-02-03 19:18:02 +00:00
|
|
|
extern HRESULT CategoryMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut);
|
2009-05-18 19:48:18 +00:00
|
|
|
extern HRESULT Range_Constructor(ITfContext *context, ITextStoreACP *textstore, DWORD lockType, DWORD anchorStart, DWORD anchorEnd, ITfRange **ppOut);
|
2009-06-11 18:32:57 +00:00
|
|
|
extern HRESULT CompartmentMgr_Constructor(IUnknown *pUnkOuter, REFIID riid, IUnknown **ppOut);
|
|
|
|
extern HRESULT CompartmentMgr_Destructor(ITfCompartmentMgr *This);
|
2009-01-27 20:15:30 +00:00
|
|
|
|
2009-06-16 09:37:54 +00:00
|
|
|
extern HRESULT Context_Initialize(ITfContext *cxt, ITfDocumentMgr *manager);
|
2009-05-15 19:09:58 +00:00
|
|
|
extern HRESULT Context_Uninitialize(ITfContext *cxt);
|
2009-07-10 12:36:56 +00:00
|
|
|
extern void ThreadMgr_OnDocumentMgrDestruction(ITfThreadMgr *tm, ITfDocumentMgr *mgr);
|
2009-06-03 16:27:31 +00:00
|
|
|
extern HRESULT TF_SELECTION_to_TS_SELECTION_ACP(const TF_SELECTION *tf, TS_SELECTION_ACP *tsAcp);
|
2009-05-15 19:09:58 +00:00
|
|
|
|
2009-04-21 15:47:48 +00:00
|
|
|
/* cookie function */
|
|
|
|
extern DWORD generate_Cookie(DWORD magic, LPVOID data);
|
|
|
|
extern DWORD get_Cookie_magic(DWORD id);
|
|
|
|
extern LPVOID get_Cookie_data(DWORD id);
|
|
|
|
extern LPVOID remove_Cookie(DWORD id);
|
2009-05-04 19:31:15 +00:00
|
|
|
extern DWORD enumerate_Cookie(DWORD magic, DWORD *index);
|
2009-04-21 15:47:48 +00:00
|
|
|
|
2009-05-07 19:27:29 +00:00
|
|
|
/* activated text services functions */
|
|
|
|
extern HRESULT add_active_textservice(TF_LANGUAGEPROFILE *lp);
|
|
|
|
extern BOOL get_active_textservice(REFCLSID rclsid, TF_LANGUAGEPROFILE *lp);
|
|
|
|
extern HRESULT activate_textservices(ITfThreadMgr *tm);
|
|
|
|
extern HRESULT deactivate_textservices(void);
|
|
|
|
|
2009-05-08 13:50:59 +00:00
|
|
|
extern CLSID get_textservice_clsid(TfClientId tid);
|
|
|
|
extern HRESULT get_textservice_sink(TfClientId tid, REFCLSID iid, IUnknown** sink);
|
|
|
|
extern HRESULT set_textservice_sink(TfClientId tid, REFCLSID iid, IUnknown* sink);
|
|
|
|
|
2009-02-03 19:17:41 +00:00
|
|
|
extern const WCHAR szwSystemTIPKey[];
|
2009-06-26 08:03:30 +00:00
|
|
|
extern const WCHAR szwSystemCTFKey[];
|
2009-01-27 20:15:30 +00:00
|
|
|
#endif /* __WINE_MSCTF_I_H */
|