home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / slice.zip / SLICE.H < prev    next >
C/C++ Source or Header  |  1993-01-05  |  350b  |  16 lines

  1. /* SLICE.H
  2.  *
  3.  * Turbo/Borland C prototypes for the functions provided by SLICE.ASM
  4.  *
  5.  */
  6. #ifndef SLICE_H_
  7. #define SLICE_H_
  8.  
  9. /* Returns zero if no known multi-tasker found, or an ID if one is. */
  10. int     detect_multitasker(void);
  11.  
  12. /* Give up a timeslice. detect_multitasker should be called first. */
  13. void    timeslice(void);
  14.  
  15. #endif
  16.