Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6043 leency 1
char ini_path[4096];
2
char config_section[] = "Config";
3
int encoding;
4
 
5
void LoadIniSettings()
6
{
7
	label.size.pt = 14;
8
	encoding = CH_CP866;
9
	Form.left = 150;
10
	Form.top = 50;
11
	Form.width = 640;
12
	Form.height = 560;
13
	/*
14
	strcpy(#ini_path, "/sys/settings/treader.ini");
15
	ini_get_int stdcall   (#ini_path, #config_section, "FontSize",  14); label.size.pt = EAX;
16
	ini_get_int stdcall   (#ini_path, #config_section, "Encoding",  CH_CP866); encoding = EAX;
17
	ini_get_int stdcall   (#ini_path, #config_section, "WinX", 150); Form.left = EAX;
18
	ini_get_int stdcall   (#ini_path, #config_section, "WinY", 50); Form.top = EAX;
19
	ini_get_int stdcall   (#ini_path, #config_section, "WinW", 640); Form.width = EAX;
20
	ini_get_int stdcall   (#ini_path, #config_section, "WinH", 560); Form.height = EAX;
21
	*/
22
}
23
 
24
void SaveIniSettings()
25
{
26
	/*
27
	ini_set_int stdcall (#ini_path, #config_section, "FontSize", label.size.pt);
28
	ini_set_int stdcall (#ini_path, #config_section, "Encoding", encoding);
29
	ini_set_int stdcall (#ini_path, #config_section, "WinX", Form.left);
30
	ini_set_int stdcall (#ini_path, #config_section, "WinY", Form.top);
31
	ini_set_int stdcall (#ini_path, #config_section, "WinW", Form.width);
32
	ini_set_int stdcall (#ini_path, #config_section, "WinH", Form.height);
33
	*/
34
}