1 #include <vector>
2 #include "OVIMEUI.h"
3 HFONT hUIFont;
4 HINSTANCE hInst;
5 HINSTANCE hInstDLL;
6 wchar_t* lpCandStr;
7 int numCand;
8 wchar_t* lpCompStr;
9 wchar_t* lpNotifyStr;
10 int CompCursorPos;
11 int CompSelStart;
12 int CompSelEnd;
13 UICHILD uiStatus;
14 UICHILD uiComp;
15 UICHILD uiCand;
16 UICHILD uiNotify;
17 HICON hMainIcon;
18 HWND hIMEWnd;
19 HWND hToolbar;
20 HMENU hIMESelMenu;
21 bool isChinese = true;
22 bool isFull = false;
23 
24 // InputContext
25 std::vector<wchar_t*> IC;
26 int CurrentIC;
27