Subversion Repositories Kolibri OS

Rev

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

Rev 485 Rev 551
Line 212... Line 212...
212
 
212
 
213
				   ; DRAW WINDOW
213
				   ; DRAW WINDOW
214
    mov  eax,0			   ; function 0 : define and draw window
214
    mov  eax,0			   ; function 0 : define and draw window
215
    mov  ebx,100*65536+250	   ; [x start] *65536 + [x size]
215
    mov  ebx,100*65536+250	   ; [x start] *65536 + [x size]
216
    mov  ecx,60*65536+280	   ; [y start] *65536 + [y size]
216
    mov  ecx,60*65536+280	   ; [y start] *65536 + [y size]
217
    mov  edx,0x13ffffff 	   ; color of work area RRGGBB
217
    mov  edx,0x14ffffff 	   ; color of work area RRGGBB
218
    mov  edi,title      	   ; WINDOW LABEL
218
    mov  edi,title      	   ; WINDOW LABEL
Line 219... Line 219...
219
    mcall
219
    mcall