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 252... Line 252...
252
   
252
   
253
                                   ; DRAW WINDOW
253
                                   ; DRAW WINDOW
254
    mov  eax,0                     ; function 0 : define and draw window
254
    mov  eax,0                     ; function 0 : define and draw window
255
    mov  ebx,100*65536+300         ; [x start] *65536 + [x size]
255
    mov  ebx,100*65536+300         ; [x start] *65536 + [x size]
256
    mov  ecx,100*65536+330         ; [y start] *65536 + [y size]
256
    mov  ecx,100*65536+330         ; [y start] *65536 + [y size]
257
    mov  edx,0x13ffffff            ; color of work area RRGGBB
257
    mov  edx,0x14ffffff            ; color of work area RRGGBB
258
    mov  edi,title                 ; WINDOW LABEL
258
    mov  edi,title                 ; WINDOW LABEL
Line 259... Line 259...
259
    mcall
259
    mcall