mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 19:19:00 +00:00
[MSCTF] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70884
This commit is contained in:
parent
0737aa31b7
commit
565ee09080
4 changed files with 13 additions and 13 deletions
|
@ -35,7 +35,7 @@ typedef struct
|
|||
typedef struct {
|
||||
TF_LANGUAGEPROFILE LanguageProfile;
|
||||
ITfTextInputProcessor *pITfTextInputProcessor;
|
||||
ITfThreadMgr *pITfThreadMgr;
|
||||
ITfThreadMgrEx *pITfThreadMgrEx;
|
||||
ITfKeyEventSink *pITfKeyEventSink;
|
||||
TfClientId tid;
|
||||
} ActivatedTextService;
|
||||
|
@ -269,7 +269,7 @@ DWORD enumerate_Cookie(DWORD magic, DWORD *index)
|
|||
/*****************************************************************************
|
||||
* Active Text Service Management
|
||||
*****************************************************************************/
|
||||
static HRESULT activate_given_ts(ActivatedTextService *actsvr, ITfThreadMgr* tm)
|
||||
static HRESULT activate_given_ts(ActivatedTextService *actsvr, ITfThreadMgrEx *tm)
|
||||
{
|
||||
HRESULT hr;
|
||||
|
||||
|
@ -281,7 +281,7 @@ static HRESULT activate_given_ts(ActivatedTextService *actsvr, ITfThreadMgr* tm)
|
|||
&IID_ITfTextInputProcessor, (void**)&actsvr->pITfTextInputProcessor);
|
||||
if (FAILED(hr)) return hr;
|
||||
|
||||
hr = ITfTextInputProcessor_Activate(actsvr->pITfTextInputProcessor, tm, actsvr->tid);
|
||||
hr = ITfTextInputProcessor_Activate(actsvr->pITfTextInputProcessor, (ITfThreadMgr *)tm, actsvr->tid);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
ITfTextInputProcessor_Release(actsvr->pITfTextInputProcessor);
|
||||
|
@ -289,8 +289,8 @@ static HRESULT activate_given_ts(ActivatedTextService *actsvr, ITfThreadMgr* tm)
|
|||
return hr;
|
||||
}
|
||||
|
||||
actsvr->pITfThreadMgr = tm;
|
||||
ITfThreadMgr_AddRef(tm);
|
||||
actsvr->pITfThreadMgrEx = tm;
|
||||
ITfThreadMgrEx_AddRef(tm);
|
||||
return hr;
|
||||
}
|
||||
|
||||
|
@ -302,9 +302,9 @@ static HRESULT deactivate_given_ts(ActivatedTextService *actsvr)
|
|||
{
|
||||
hr = ITfTextInputProcessor_Deactivate(actsvr->pITfTextInputProcessor);
|
||||
ITfTextInputProcessor_Release(actsvr->pITfTextInputProcessor);
|
||||
ITfThreadMgr_Release(actsvr->pITfThreadMgr);
|
||||
ITfThreadMgrEx_Release(actsvr->pITfThreadMgrEx);
|
||||
actsvr->pITfTextInputProcessor = NULL;
|
||||
actsvr->pITfThreadMgr = NULL;
|
||||
actsvr->pITfThreadMgrEx = NULL;
|
||||
}
|
||||
|
||||
return hr;
|
||||
|
@ -333,7 +333,7 @@ HRESULT add_active_textservice(TF_LANGUAGEPROFILE *lp)
|
|||
ActivatedTextService *actsvr;
|
||||
ITfCategoryMgr *catmgr;
|
||||
AtsEntry *entry;
|
||||
ITfThreadMgr *tm = TlsGetValue(tlsIndex);
|
||||
ITfThreadMgrEx *tm = TlsGetValue(tlsIndex);
|
||||
ITfClientId *clientid;
|
||||
|
||||
if (!tm) return E_UNEXPECTED;
|
||||
|
@ -341,7 +341,7 @@ HRESULT add_active_textservice(TF_LANGUAGEPROFILE *lp)
|
|||
actsvr = HeapAlloc(GetProcessHeap(),0,sizeof(ActivatedTextService));
|
||||
if (!actsvr) return E_OUTOFMEMORY;
|
||||
|
||||
ITfThreadMgr_QueryInterface(tm,&IID_ITfClientId,(LPVOID)&clientid);
|
||||
ITfThreadMgrEx_QueryInterface(tm, &IID_ITfClientId, (void **)&clientid);
|
||||
ITfClientId_GetClientId(clientid, &lp->clsid, &actsvr->tid);
|
||||
ITfClientId_Release(clientid);
|
||||
|
||||
|
@ -408,7 +408,7 @@ BOOL get_active_textservice(REFCLSID rclsid, TF_LANGUAGEPROFILE *profile)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
HRESULT activate_textservices(ITfThreadMgr *tm)
|
||||
HRESULT activate_textservices(ITfThreadMgrEx *tm)
|
||||
{
|
||||
HRESULT hr = S_OK;
|
||||
AtsEntry *ats;
|
||||
|
|
|
@ -82,7 +82,7 @@ extern DWORD enumerate_Cookie(DWORD magic, DWORD *index) DECLSPEC_HIDDEN;
|
|||
/* activated text services functions */
|
||||
extern HRESULT add_active_textservice(TF_LANGUAGEPROFILE *lp) DECLSPEC_HIDDEN;
|
||||
extern BOOL get_active_textservice(REFCLSID rclsid, TF_LANGUAGEPROFILE *lp) DECLSPEC_HIDDEN;
|
||||
extern HRESULT activate_textservices(ITfThreadMgr *tm) DECLSPEC_HIDDEN;
|
||||
extern HRESULT activate_textservices(ITfThreadMgrEx *tm) DECLSPEC_HIDDEN;
|
||||
extern HRESULT deactivate_textservices(void) DECLSPEC_HIDDEN;
|
||||
|
||||
extern CLSID get_textservice_clsid(TfClientId tid) DECLSPEC_HIDDEN;
|
||||
|
|
|
@ -576,7 +576,7 @@ static HRESULT WINAPI ThreadMgr_ActivateEx(ITfThreadMgrEx *iface, TfClientId *id
|
|||
ITfClientId_GetClientId(&This->ITfClientId_iface, &guid, &processId);
|
||||
}
|
||||
|
||||
activate_textservices((ITfThreadMgr *)iface);
|
||||
activate_textservices(iface);
|
||||
This->activationCount++;
|
||||
*id = processId;
|
||||
return S_OK;
|
||||
|
|
|
@ -108,7 +108,7 @@ reactos/dll/win32/msadp32.acm # Synced to WineStaging-1.7.55
|
|||
reactos/dll/win32/mscat32 # Synced to WineStaging-1.7.55
|
||||
reactos/dll/win32/mscms # Synced to WineStaging-1.7.55
|
||||
reactos/dll/win32/mscoree # Synced to Wine-1.5.4
|
||||
reactos/dll/win32/msctf # Synced to WineStaging-1.7.55
|
||||
reactos/dll/win32/msctf # Synced to WineStaging-1.9.4
|
||||
reactos/dll/win32/msftedit # Synced to WineStaging-1.7.55
|
||||
reactos/dll/win32/msg711.acm # Synced to WineStaging-1.7.55
|
||||
reactos/dll/win32/msgsm32.acm # Synced to WineStaging-1.7.55
|
||||
|
|
Loading…
Reference in a new issue