home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1996 November / PCO96_11.ISO / filesbbs / taskmon.arj / PASCAL / TASKDLL.DPR < prev    next >
Encoding:
Text File  |  1996-08-23  |  404 b   |  20 lines

  1. library taskdll;
  2.  
  3. uses
  4.   SysUtils,
  5.   Classes,
  6.   taskdll0 in 'taskdll0.pas';
  7.  
  8. exports
  9.   InitTaskDLL              index 1,
  10.   InstallHookCreateProcess index 2,
  11.   InstallHookExitProcess   index 3,
  12.   UninstallHooks           index 4,
  13.   MyCreateProcessA         index 5,
  14.   MyExitProcess            index 6,
  15.   GetItemInLog             index 7,
  16.   SetAlarm                 index 8;
  17.  
  18. begin
  19. end.
  20.