macros.inc: set margins

git-svn-id: svn://kolibrios.org@3032 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2012-11-13 01:34:05 +00:00
parent b2cc525b46
commit b4394bfc2f

View File

@ -452,34 +452,34 @@ struct BOX
height dd ? height dd ?
ends ends
; structures used in MeOS ; structures used in KolibriOS
struct process_information struct process_information
cpu_usage dd ? ; +0 cpu_usage dd ? ; +0
window_stack_position dw ? ; +4 window_stack_position dw ? ; +4
window_stack_value dw ? ; +6 window_stack_value dw ? ; +6
dw ? ; +8 dw ? ; +8
process_name rb 12 ; +10 process_name rb 12 ; +10
memory_start dd ? ; +22 memory_start dd ? ; +22
used_memory dd ? ; +26 used_memory dd ? ; +26
PID dd ? ; +30 PID dd ? ; +30
box BOX ; +34 box BOX ; +34
slot_state dw ? ; +50 slot_state dw ? ; +50
dw ? ; +52 dw ? ; +52
client_box BOX ; +54 client_box BOX ; +54
wnd_state db ? ; +70 wnd_state db ? ; +70
rb (1024-71) rb (1024-71)
ends ends
struct system_colors struct system_colors
frame dd ? frame dd ?
grab dd ? grab dd ?
grab_button dd ? grab_button dd ?
grab_button_text dd ? grab_button_text dd ?
grab_text dd ? grab_text dd ?
work dd ? work dd ?
work_button dd ? work_button dd ?
work_button_text dd ? work_button_text dd ?
work_text dd ? work_text dd ?
work_graph dd ? work_graph dd ?
ends ends
@ -487,7 +487,7 @@ struct FILEDATE
Second db ? Second db ?
Minute db ? Minute db ?
Hour db ? Hour db ?
db ? db ?
Day db ? Day db ?
Month db ? Month db ?
Year dw ? Year dw ?
@ -496,7 +496,7 @@ ends
struct FILEINFO struct FILEINFO
Attributes dd ? Attributes dd ?
IsUnicode db ? IsUnicode db ?
db 3 dup(?) db 3 dup(?)
DateCreate FILEDATE DateCreate FILEDATE
DateAccess FILEDATE DateAccess FILEDATE
DateModify FILEDATE DateModify FILEDATE
@ -518,7 +518,7 @@ EV_IPC = 7
EV_STACK = 8 EV_STACK = 8
; event mask bits for function 40 ; event mask bits for function 40
EVM_REDRAW = 1b EVM_REDRAW = 1b
EVM_KEY = 10b EVM_KEY = 10b
EVM_BUTTON = 100b EVM_BUTTON = 100b
EVM_EXIT = 1000b EVM_EXIT = 1000b