Subversion Repositories Kolibri OS

Rev

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

Rev 485 Rev 551
Line 72... Line 72...
72
 
72
 
73
                                   ; DRAW WINDOW
73
                                   ; DRAW WINDOW
74
    mov  eax,0                     ; function 0 : define and draw window
74
    mov  eax,0                     ; function 0 : define and draw window
75
    mov  ebx,100*65536+270         ; [x start] *65536 + [x size]
75
    mov  ebx,100*65536+270         ; [x start] *65536 + [x size]
76
    mov  ecx,100*65536+80          ; [y start] *65536 + [y size]
76
    mov  ecx,100*65536+80          ; [y start] *65536 + [y size]
77
    mov  edx,0x33ffffff            ; color of work area RRGGBB,8->color gl
77
    mov  edx,0x34ffffff            ; color of work area RRGGBB,8->color gl
78
    mov  edi,title
78
    mov  edi,title
Line 79... Line 79...
79
    mcall
79
    mcall
80
 
80