You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
813 B
22 lines
813 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// File: globals.h
|
|
//
|
|
// Contents: Global variable declarations.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef ITHDMSHL_H
|
|
#define ITHDMSHL_H
|
|
|
|
#define MP_MARSHALINTERFACE 0
|
|
#define MP_UNMARSHALINTERFACEERROR 1
|
|
|
|
HRESULT GetThreadMarshalInterface(DWORD dwThreadId, DWORD dwType, REFIID riid, IUnknown **ppunk);
|
|
HRESULT GetThreadUIManager(DWORD dwThreadId, ITfLangBarItemMgr **pplbi, DWORD *pdwThreadId);
|
|
HRESULT GetInputProcessorProfiles(DWORD dwThreadId, ITfInputProcessorProfiles **ppaip, DWORD *pdwThreadId);
|
|
HRESULT ThreadMarshalInterfaceHandler(int nId);
|
|
HRESULT ThreadUnMarshalInterfaceErrorHandler(int nId);
|
|
|
|
#endif // ITHDMSHL_H
|
|
|