home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / sp103.zip / setprio.pas < prev    next >
Pascal/Delphi Source File  |  1995-03-30  |  326b  |  16 lines

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