Implementing base parts of TSF

This commit is contained in:
dewyatt 2010-05-30 15:48:16 -04:00
parent 301e0597a3
commit a1f1bc8952
2 changed files with 153 additions and 1 deletions

View file

@ -2,6 +2,7 @@
#define TSF_HPP
#include <msctf.h>
#include <atlbase.h>
class TSF
{
@ -37,8 +38,20 @@ protected:
LONG my_Reference_Count;
};
private:
TSF();
~TSF();
void Initialize();
void Finalize();
private:
bool my_COM_Initialized;
CComPtr<ITfThreadMgrEx> my_Thread_Manager;
UI_Sink *my_UI_Sink;
DWORD my_UI_Element_Sink_Cookie;
DWORD my_IPPA_Sink_Cookie;
};
#endif