Subversion Repositories Kolibri OS

Rev

Rev 5526 | Rev 7245 | 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
{
24
  dword type;
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;
33
  dword openfile_pach;
34
  dword filename_area;
35
  dword filter_area;
36
 
37
  word x_size;
38
  word x_start;
39
 
40
  word y_size;
41
  word y_start;
42
};
43
 
5598 pavelyakov 44
#endif