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 845... Line 845...
845
                                   ; DRAW WINDOW
845
                                   ; DRAW WINDOW
846
    mov  eax,0                     ; function 0 : define and draw window
846
    mov  eax,0                     ; function 0 : define and draw window
847
    mov  ebx,100*65536+320         ; [x start] *65536 + [x size]
847
    mov  ebx,100*65536+320         ; [x start] *65536 + [x size]
848
    mov  ecx,100*65536+140         ; [y start] *65536 + [y size]
848
    mov  ecx,100*65536+140         ; [y start] *65536 + [y size]
849
    mov  edx,[bgr]
849
    mov  edx,[bgr]
850
    or   edx,0x13000000            ; color of work area RRGGBB,8->color gl
850
    or   edx,0x14000000            ; color of work area RRGGBB,8->color gl
851
    mov  edi,title                 ; WINDOW LABEL
851
    mov  edi,title                 ; WINDOW LABEL
852
    mcall
852
    mcall
Line 853... Line 853...
853
 
853