Subversion Repositories Kolibri OS

Rev

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

Rev 529 Rev 551
Line 477... Line 477...
477
 
477
 
478
                                   ; DRAW WINDOW
478
                                   ; DRAW WINDOW
479
    xor  eax,eax                   ; function 0 : define and draw window
479
    xor  eax,eax                   ; function 0 : define and draw window
480
    mov  ebx,[winxpos]             ; [x start] *65536 + [x size]
480
    mov  ebx,[winxpos]             ; [x start] *65536 + [x size]
481
    mov  ecx,[winypos]             ; [y start] *65536 + [y size]
481
    mov  ecx,[winypos]             ; [y start] *65536 + [y size]
482
    mov  edx,0x13ddffdd  ;ffffff   ; color of work area RRGGBB,8->color
482
    mov  edx,0x14ddffdd  ;ffffff   ; color of work area RRGGBB,8->color
483
    mov  edi,title                ; WINDOW CAPTION;
483
    mov  edi,title                ; WINDOW CAPTION;
Line 484... Line 484...
484
    int  0x40
484
    int  0x40