2015-03-25 12:46:22 +01:00
|
|
|
struct od_filter
|
2017-10-05 00:59:57 +02:00
|
|
|
{
|
|
|
|
dword size; //size = len(#ext) + sizeof(dword)
|
|
|
|
char ext[16];
|
|
|
|
};
|
|
|
|
|
2015-03-25 12:46:22 +01:00
|
|
|
proc_info pr_inf;
|
2017-10-05 00:59:57 +02:00
|
|
|
char opendir_path[3072];
|
2017-10-03 16:55:12 +02:00
|
|
|
char openfile_path[4096];
|
2017-10-05 00:59:57 +02:00
|
|
|
char filename_area[1024];
|
|
|
|
|
2017-10-03 16:55:12 +02:00
|
|
|
opendialog o_dialog = {
|
|
|
|
0,
|
|
|
|
#pr_inf,
|
|
|
|
#communication_area_name,
|
|
|
|
0,
|
|
|
|
#opendir_path,
|
|
|
|
#default_dir,
|
|
|
|
#open_dialog_path,
|
|
|
|
#draw_window,
|
|
|
|
0,
|
|
|
|
#openfile_path,
|
|
|
|
#filename_area,
|
|
|
|
#filter2,
|
|
|
|
|
|
|
|
420,
|
|
|
|
200,
|
|
|
|
|
|
|
|
320,
|
|
|
|
120
|
|
|
|
};
|