Subversion Repositories Kolibri OS

Rev

Rev 7043 | Rev 7788 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7043 Rev 7049
1
struct od_filter
1
struct od_filter
2
{
2
 {
3
	dword size;
3
 	dword size; //size = len(#ext) + sizeof(dword)
4
	byte end;
4
 	char ext[16];
5
};
5
 };
-
 
6
 
6
 
7
 
7
proc_info pr_inf;
8
proc_info pr_inf;
8
char communication_area_name[] = "FFFFFFFF_open_dialog";
9
char communication_area_name[] = "FFFFFFFF_open_dialog";
9
char opendir_path[4096];
10
char opendir_path[3072];
10
char open_dialog_path[] = "/rd/1/File managers/opendial";
11
char open_dialog_path[] = "/rd/1/File managers/opendial";
11
char openfile_path[4096];
12
char openfile_path[4096];
12
char filename_area[256];
13
char filename_area[1024];
-
 
14
 
13
 
15
 
14
opendialog o_dialog = {
16
opendialog o_dialog = {
15
	0,
17
	0,
16
	#pr_inf, 
18
	#pr_inf, 
17
	#communication_area_name, 
19
	#communication_area_name, 
18
	0, 
20
	0, 
19
	#opendir_path, 
21
	#opendir_path, 
20
	#default_dir, 
22
	#default_dir, 
21
	#open_dialog_path,
23
	#open_dialog_path,
22
	#draw_window, 
24
	#draw_window, 
23
	0, 
25
	0, 
24
	#openfile_path, 
26
	#openfile_path, 
25
	#filename_area, 
27
	#filename_area, 
26
	#filter2, 
28
	#filter2, 
27
 
29
 
28
	420, 
30
	420, 
29
	200, 
31
	200, 
30
 
32
 
31
	320, 
33
	320, 
32
	120
34
	120
33
};
35
};