home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / memsz331.zip / Source.zip / THREAD.H < prev    next >
Text File  |  1995-07-24  |  616b  |  17 lines

  1. /******************************************************************* THREAD.H
  2.  *                                                                          *
  3.  *                       Thread Starter Function                            *
  4.  *                                                                          *
  5.  ****************************************************************************/
  6.  
  7. #ifndef THREAD_H
  8. #define THREAD_H
  9.  
  10. #define INCL_BASE
  11. #define INCL_PM
  12. #include <os2.h>
  13.  
  14. extern TID StartThread ( char *Name, void(*Function)(void*), int StackSize, void *Parameter, int Priority=0 ) ;
  15.  
  16. #endif
  17.