Subversion Repositories Kolibri OS

Rev

Rev 8337 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8337 Rev 8403
Line 20... Line 20...
20
typedef unsigned char byte;
20
typedef unsigned char byte;
21
typedef unsigned short word;
21
typedef unsigned short word;
Line 22... Line 22...
22
 
22
 
23
typedef unsigned int fpos_t;
23
typedef unsigned int fpos_t;
24
typedef unsigned int size_t;
-
 
-
 
24
typedef unsigned int size_t;
25
 
25
#pragma pack(push,1)
26
typedef struct process_table_entry{
26
struct process_table_entry{
27
  int cpu_usage;             //+0
27
  int cpu_usage;             //+0
28
  int window_pos_info;       //+4
28
  int window_pos_info;       //+4
29
  short int reserved1;       //+8
29
  short int reserved1;       //+8
30
  char name[12];             //+10
30
  char name[12];             //+10
Line 41... Line 41...
41
  int clienty;               //+58
41
  int clienty;               //+58
42
  int clientwidth;           //+62
42
  int clientwidth;           //+62
43
  int clientheight;          //+66
43
  int clientheight;          //+66
44
  unsigned char window_state;//+70
44
  unsigned char window_state;//+70
45
  char reserved3[1024-71];   //+71
45
  char reserved3[1024-71];   //+71
-
 
46
};
46
}__attribute__((packed));
47
#pragma pack(pop)
Line 47... Line 48...
47
 
48
 
48
//-----------------------------------------------------------------------------------
49
//-----------------------------------------------------------------------------------
49
//------------------------KolibriOS system acces to files----------------------------
50
//------------------------KolibriOS system acces to files----------------------------
50
//-----------------------------------------------------------------------------------
51
//-----------------------------------------------------------------------------------