Subversion Repositories Kolibri OS

Rev

Rev 122 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 122 Rev 178
Line 1... Line -...
1
; language for programs
-
 
2
lang fix en ; ru en fr ge fi
-
 
3
 
-
 
4
@^ fix macro comment {
1
@^ fix macro comment {
5
^@ fix }
2
^@ fix }
Line 6... Line 3...
6
 
3
 
Line 329... Line 326...
329
}
326
}
Line 330... Line 327...
330
 
327
 
331
; structure definition helper
328
; structure definition helper
Line -... Line 329...
-
 
329
include 'struct.inc'
-
 
330
 
-
 
331
struct RECT
-
 
332
  left	 dd ?
-
 
333
  top	 dd ?
-
 
334
  right  dd ?
-
 
335
  bottom dd ?
-
 
336
ends
-
 
337
 
-
 
338
struct BOX
-
 
339
  left	 dd ?
-
 
340
  top	 dd ?
-
 
341
  width  dd ?
-
 
342
  height dd ?
332
include 'struct.inc'
343
ends
333
 
344
 
334
; structures used in MeOS
345
; structures used in MeOS
335
struct process_information
346
struct process_information
336
  cpu_usage		  dd ?	; +0
347
  cpu_usage		  dd ?	; +0
337
  window_stack_position   dw ?	; +4
348
  window_stack_position   dw ?	; +4
338
  window_stack_value	  dw ?	; +6
349
  window_stack_value	  dw ?	; +6
339
  not_used1		  dw ?	; +8
350
			  dw ?	; +8
340
  process_name		  rb 12 ; +10
351
  process_name		  rb 12 ; +10
341
  memory_start		  dd ?	; +22
352
  memory_start		  dd ?	; +22
342
  used_memory		  dd ?	; +26
353
  used_memory		  dd ?	; +26
343
  PID			  dd ?	; +30
-
 
344
  x_start		  dd ?	; +34
-
 
345
  y_start		  dd ?	; +38
-
 
346
  x_size		  dd ?	; +42
354
  PID			  dd ?	; +30
-
 
355
  box			  BOX	; +34
-
 
356
  slot_state		  dw ?	; +50
347
  y_size		  dd ?	; +46
357
			  dw ?	; +52
348
  slot_state		  dw ?	; +50
358
  client_box		  BOX	; +54
Line 349... Line 359...
349
  rb (1024-52)
359
  rb (1024-52)
350
ends
360
ends