home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / sp.zip / SETPRIO.PAS < prev    next >
Pascal/Delphi Source File  |  1993-09-13  |  189b  |  12 lines

  1. UNIT SetPrio;
  2.  
  3. Interface
  4.  
  5. Procedure SetPriority(Class:LongInt;Delta:LongInt);
  6.  
  7. Implementation
  8.  
  9. Procedure SetPriority(Class:LongInt;Delta:LongInt);external;
  10. {$L PRIOINT.OBJ}
  11.  
  12. end.