Subversion Repositories Kolibri OS

Rev

Rev 5598 | Rev 7355 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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