home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_03_06 / 3n06026a < prev    next >
Text File  |  1992-04-15  |  334b  |  16 lines

  1. ; PATCH.DEF     Module definition file
  2.  
  3. LIBRARY PATCH
  4. Description 'Intercepting dll functions  (c) Timothy Adams  1992 '
  5. EXETYPE WINDOWS
  6. CODE      PRELOAD   FIXED
  7. DATA      PRELOAD   FIXED   SINGLE
  8. HEAPSIZE 5000
  9. EXPORTS
  10.     WEP         @1 RESIDENTNAME
  11.     MYWINEXEC        @2
  12.     PATCH        @3
  13.     UNPATCH        @4
  14. IMPORTS
  15.     WINWINEXEC=KERNEL.166
  16.