1 /* Created by Anjuta version 1.1.97 */
2 /*	This file will not be overwritten */
3 
4 /*Program closes with a mouse click or KeyPressMaskpress */
5 
6 #ifdef HAVE_CONFIG_H
7 #  include <config.h>
8 #endif
9 #define Uses_SCIM_IMENGINE
10 #define Uses_SCIM_ICONV
11 #define Uses_SCIM_CONFIG_BASE
12 #define Uses_SCIM_CONFIG_PATH
13 
14 #include <scim.h>
15 #include "scim_fcitx_imengine.h"
16 using namespace scim;
17 
18 #include "version.h"
19 
20 #include "main.h"
21 
22 #include "tools.h"
23 
24 
25 
26 
27 #include "ime.h"
28 #include "table.h"
29 #include "punc.h"
30 #include "py.h"
31 
32 
Fcim_main(int argc,char * argv[])33 int Fcim_main (int argc, char *argv[])
34 {
35     LoadConfig (True);
36 
37     LoadProfile ();
38 
39     if (!LoadPuncDict ());
40 //	printf ("�޷������ı���ļ������޷��������ı�㣡\n");
41 
42 
43     SetIM ();
44 
45 
46 
47     return 0;
48 }
49