Subversion Repositories Kolibri OS

Rev

Rev 145 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. format ELF
  2. include "public_stdcall.inc"
  3. section '.text' executable
  4. public_stdcall _msys_wait_for_event_infinite,0
  5.   mov  eax,10
  6.   int  0x40
  7.   ret
  8.  
  9. public_stdcall _msys_check_for_event,0
  10.   mov  eax,11
  11.   int  0x40
  12.   ret
  13.  
  14. public_stdcall _msys_wait_for_event,4
  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.  
  23. public_stdcall _msys_set_wanted_events,4
  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