home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / languages / pcq_incl3v1.lha / Utils / TaskUtils.i < prev    next >
Encoding:
Text File  |  1994-04-15  |  377 b   |  17 lines

  1.  
  2. {
  3.         TaskUtils.i
  4.  
  5.         Declares the Task support routines CreateTask and DeleteTask.
  6.         The source for these routines is under Runtime/Extras.
  7. }
  8.  
  9. {$I   "Include:Exec/Tasks.i"}
  10.  
  11. Function CreateTask(name : String; pri : Byte;
  12.                         initPC : Address; stackSize : Integer) : TaskPtr;
  13.     External;
  14.  
  15. Procedure DeleteTask(tc : TaskPtr);
  16.     External;
  17.