ReactOS 0.4.16-dev-1278-gd809cd0
msctf_internal.h
Go to the documentation of this file.
1/*
2 * Internal header for msctf.dll
3 *
4 * Copyright 2008 Aric Stewart, CodeWeavers
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21#ifndef __WINE_MSCTF_I_H
22#define __WINE_MSCTF_I_H
23
24#include "wine/list.h"
25
26#if defined(__REACTOS__) && defined(__cplusplus)
27extern "C" {
28#endif
29
30#define COOKIE_MAGIC_TMSINK 0x0010
31#define COOKIE_MAGIC_CONTEXTSINK 0x0020
32#define COOKIE_MAGIC_GUIDATOM 0x0030
33#define COOKIE_MAGIC_IPPSINK 0x0040
34#define COOKIE_MAGIC_EDITCOOKIE 0x0050
35#define COOKIE_MAGIC_COMPARTMENTSINK 0x0060
36#define COOKIE_MAGIC_DMSINK 0x0070
37#define COOKIE_MAGIC_THREADFOCUSSINK 0x0080
38#define COOKIE_MAGIC_KEYTRACESINK 0x0090
39#define COOKIE_MAGIC_UIELEMENTSINK 0x00a0
40#define COOKIE_MAGIC_INPUTPROCESSORPROFILEACTIVATIONSINK 0x00b0
41#define COOKIE_MAGIC_ACTIVELANGSINK 0x00c0
42
46
49extern HRESULT Context_Constructor(TfClientId tidOwner, IUnknown *punk, ITfDocumentMgr *mgr, ITfContext **ppOut, TfEditCookie *pecTextStore) DECLSPEC_HIDDEN;
52extern HRESULT Range_Constructor(ITfContext *context, ITextStoreACP *textstore, DWORD lockType, DWORD anchorStart, DWORD anchorEnd, ITfRange **ppOut) DECLSPEC_HIDDEN;
57
62
63/* cookie function */
69
70/* activated text services functions */
75
79
80typedef struct {
81 struct list entry;
82 union {
89 } interfaces;
90} Sink;
91
92#define SINK_ENTRY(cursor,type) (LIST_ENTRY(cursor,Sink,entry)->interfaces.p##type)
93#define SINK_FOR_EACH(cursor,list,type,elem) \
94 for ((cursor) = (list)->next, elem = SINK_ENTRY(cursor,type); \
95 (cursor) != (list); \
96 (cursor) = (cursor)->next, elem = SINK_ENTRY(cursor,type))
97
98HRESULT advise_sink(struct list *sink_list, REFIID riid, DWORD cookie_magic, IUnknown *unk, DWORD *cookie) DECLSPEC_HIDDEN;
100void free_sinks(struct list *sink_list) DECLSPEC_HIDDEN;
101
104
105#if defined(__REACTOS__) && defined(__cplusplus)
106} // extern "C"
107#endif
108
109#endif /* __WINE_MSCTF_I_H */
Definition: list.h:37
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
Definition: gl.h:1950
GLuint index
Definition: glext.h:6031
GLsizei GLenum GLboolean sink
Definition: glext.h:5672
HFONT tf
Definition: icontest.c:17
REFIID riid
Definition: atlbase.h:39
uint32_t entry
Definition: isohybrid.c:63
static TfClientId tid
ITfCompartmentMgr * globalCompartmentMgr
Definition: msctf.c:74
TfClientId processId
Definition: msctf.c:73
const WCHAR szwSystemCTFKey[]
Definition: msctf.c:77
const WCHAR szwSystemTIPKey[]
Definition: msctf.c:76
DWORD tlsIndex
Definition: msctf.c:72
DWORD TfClientId
Definition: msctf.idl:87
DWORD TfEditCookie
Definition: msctf.idl:86
DWORD tlsIndex DECLSPEC_HIDDEN
BOOL get_active_textservice(REFCLSID rclsid, TF_LANGUAGEPROFILE *lp) DECLSPEC_HIDDEN
Definition: msctf.c:459
HRESULT Context_Initialize(ITfContext *cxt, ITfDocumentMgr *manager) DECLSPEC_HIDDEN
Definition: context.c:1109
HRESULT Context_Uninitialize(ITfContext *cxt) DECLSPEC_HIDDEN
Definition: context.c:1121
HRESULT advise_sink(struct list *sink_list, REFIID riid, DWORD cookie_magic, IUnknown *unk, DWORD *cookie) DECLSPEC_HIDDEN
Definition: msctf.c:285
LPVOID get_Cookie_data(DWORD id) DECLSPEC_HIDDEN
Definition: msctf.c:246
DWORD get_Cookie_magic(DWORD id) DECLSPEC_HIDDEN
Definition: msctf.c:233
void free_sinks(struct list *sink_list) DECLSPEC_HIDDEN
Definition: msctf.c:324
HRESULT CategoryMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut) DECLSPEC_HIDDEN
Definition: categorymgr.c:413
HRESULT Range_Constructor(ITfContext *context, ITextStoreACP *textstore, DWORD lockType, DWORD anchorStart, DWORD anchorEnd, ITfRange **ppOut) DECLSPEC_HIDDEN
Definition: range.cpp:385
CLSID get_textservice_clsid(TfClientId tid) DECLSPEC_HIDDEN
Definition: msctf.c:507
HRESULT unadvise_sink(DWORD cookie) DECLSPEC_HIDDEN
Definition: msctf.c:312
HRESULT get_textservice_sink(TfClientId tid, REFCLSID iid, IUnknown **sink) DECLSPEC_HIDDEN
Definition: msctf.c:517
LPVOID remove_Cookie(DWORD id) DECLSPEC_HIDDEN
Definition: msctf.c:259
DWORD enumerate_Cookie(DWORD magic, DWORD *index) DECLSPEC_HIDDEN
Definition: msctf.c:273
HRESULT add_active_textservice(TF_LANGUAGEPROFILE *lp) DECLSPEC_HIDDEN
Definition: msctf.c:395
HRESULT ThreadMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut) DECLSPEC_HIDDEN
Definition: threadmgr.c:1342
HRESULT LangBarMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut) DECLSPEC_HIDDEN
Definition: langbarmgr.cpp:270
HRESULT activate_textservices(ITfThreadMgrEx *tm) DECLSPEC_HIDDEN
Definition: msctf.c:475
HRESULT set_textservice_sink(TfClientId tid, REFCLSID iid, IUnknown *sink) DECLSPEC_HIDDEN
Definition: msctf.c:534
HRESULT deactivate_textservices(void) DECLSPEC_HIDDEN
Definition: msctf.c:493
HRESULT CompartmentMgr_Destructor(ITfCompartmentMgr *This) DECLSPEC_HIDDEN
HRESULT DisplayAttributeMgr_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut) DECLSPEC_HIDDEN
HRESULT DocumentMgr_Constructor(ITfThreadMgrEventSink *, ITfDocumentMgr **ppOut) DECLSPEC_HIDDEN
Definition: documentmgr.c:342
HRESULT TF_SELECTION_to_TS_SELECTION_ACP(const TF_SELECTION *tf, TS_SELECTION_ACP *tsAcp) DECLSPEC_HIDDEN
Definition: range.cpp:393
DWORD generate_Cookie(DWORD magic, LPVOID data) DECLSPEC_HIDDEN
Definition: msctf.c:189
HRESULT InputProcessorProfiles_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut) DECLSPEC_HIDDEN
HRESULT Context_Constructor(TfClientId tidOwner, IUnknown *punk, ITfDocumentMgr *mgr, ITfContext **ppOut, TfEditCookie *pecTextStore) DECLSPEC_HIDDEN
Definition: context.c:1047
void ThreadMgr_OnDocumentMgrDestruction(ITfThreadMgr *tm, ITfDocumentMgr *mgr) DECLSPEC_HIDDEN
Definition: threadmgr.c:1537
HRESULT CompartmentMgr_Constructor(IUnknown *pUnkOuter, REFIID riid, IUnknown **ppOut) DECLSPEC_HIDDEN
#define REFIID
Definition: guiddef.h:118
#define REFCLSID
Definition: guiddef.h:117
ITfTextEditSink * pITfTextEditSink
ITfThreadMgrEventSink * pITfThreadMgrEventSink
IUnknown * pIUnknown
ITfTransitoryExtensionSink * pITfTransitoryExtensionSink
ITfLanguageProfileNotifySink * pITfLanguageProfileNotifySink
ITfCompartmentEventSink * pITfCompartmentEventSink
Definition: http.c:7252
Definition: cookie.c:34
Definition: time.h:68
__wchar_t WCHAR
Definition: xmlstorage.h:180