Subversion Repositories Kolibri OS

Rev

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

Rev 7355 Rev 8839
1
#ifndef INCLUDE_PROCLIB_H
1
#ifndef INCLUDE_PROCLIB_H
2
#define INCLUDE_PROCLIB_H
2
#define INCLUDE_PROCLIB_H
3
 
3
 
4
#ifndef INCLUDE_KOLIBRI_H
4
#ifndef INCLUDE_KOLIBRI_H
5
#include "../lib/kolibri.h"
5
#include "../lib/kolibri.h"
6
#endif
6
#endif
7
 
7
 
8
#ifndef INCLUDE_DLL_H
8
#ifndef INCLUDE_DLL_H
9
#include "../lib/dll.h"
9
#include "../lib/dll.h"
10
#endif
10
#endif
11
dword Proc_lib = #aProc_lib;
11
dword Proc_lib = #aProc_lib;
12
char aProc_lib[]                 = "/sys/lib/proc_lib.obj";
12
char aProc_lib[]                 = "/sys/lib/proc_lib.obj";
13
 
13
 
14
dword OpenDialog_init            = #aOpenDialog_init;
14
dword OpenDialog_init            = #aOpenDialog_init;
15
dword OpenDialog_start           = #aOpenDialog_start;
15
dword OpenDialog_start           = #aOpenDialog_start;
16
 
16
 
17
$DD 2 dup 0
17
$DD 2 dup 0
18
 
18
 
19
char aOpenDialog_init[]          = "OpenDialog_init";
19
char aOpenDialog_init[]          = "OpenDialog_init";
20
char aOpenDialog_start[]         = "OpenDialog_start";
20
char aOpenDialog_start[]         = "OpenDialog_start";
21
 
21
 
22
struct opendialog
22
struct opendialog
23
{
23
{
24
  dword type; //0-file, 1-save, 2-select folder
24
  dword type; //0-file, 1-save, 2-select folder
25
  dword procinfo;
25
  dword procinfo;
26
  dword com_area_name;
26
  dword com_area_name;
27
  dword com_area;
27
  dword com_area;
28
  dword opendir_path;
28
  dword opendir_path;
29
  dword dir_default_path;
29
  dword dir_default_path;
30
  dword start_path;
30
  dword start_path;
31
  dword draw_window;
31
  dword draw_window;
32
  dword status;
32
  dword status;
33
  dword openfile_path;
33
  dword openfile_path;
34
  dword filename_area;
34
  dword filename_area;
35
  dword filter_area;
35
  dword filter_area;
36
  
36
  
37
  word w;
37
  word w;
38
  word x;
38
  word x;
39
  word h;
39
  word h;
40
  word y;
40
  word y;
41
};
41
};
42
 
42
 
43
char communication_area_name[] = "FFFFFFFF_open_dialog";
43
char communication_area_name[] = "FFFFFFFF_open_dialog";
44
char open_dialog_path[] = "/rd/1/File managers/opendial";
44
char open_dialog_path[] = "/sys/File managers/opendial";
45
 
45
 
46
#endif
46
#endif