Subversion Repositories Kolibri OS

Rev

Rev 145 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
145 halyavin 1
format ELF
159 halyavin 2
include "public_stdcall.inc"
145 halyavin 3
section '.text' executable
159 halyavin 4
public_stdcall _msys_wait_for_event_infinite,0
145 halyavin 5
  mov  eax,10
6
  int  0x40
7
  ret
8
 
159 halyavin 9
public_stdcall _msys_check_for_event,0
145 halyavin 10
  mov  eax,11
11
  int  0x40
12
  ret
13
 
159 halyavin 14
public_stdcall _msys_wait_for_event,4
145 halyavin 15
;arg1 - time
16
  mov  edx,ebx
17
  mov  eax,23
18
  mov  ebx,[esp+4]
19
  int  0x40
20
  mov  ebx,edx
21
  ret  4
22
 
159 halyavin 23
public_stdcall _msys_set_wanted_events,4
145 halyavin 24
;arg1 - flags
25
  mov  edx,ebx
26
  mov  eax,40
27
  mov  ebx,[esp+4]
28
  int  0x40
29
  mov  ebx,edx
30
  ret  4