forked from KolibriOS/kolibrios
efd8f1922c
git-svn-id: svn://kolibrios.org@5266 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
214 B
NASM
11 lines
214 B
NASM
format COFF
|
|
include "public_stdcall.inc"
|
|
section '.text' code
|
|
public_stdcall __ksys_window_redraw,4
|
|
;arg1 - status
|
|
mov edx,ebx
|
|
mov eax,12
|
|
mov ebx,[esp+4]
|
|
int 0x40
|
|
mov ebx,edx
|
|
ret 4 |