home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / sp / setprio.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-09-13  |  189 b   |  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.