home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / wpj_mag / wpjv1n7.zip / INVID.ZIP / INVID.DEF < prev    next >
Text File  |  1993-06-08  |  831b  |  22 lines

  1. ;-------------------------------------
  2. ; INVID.DEF module definition file
  3. ; Pretty self explanatory.  We won't have to bother changing this file 
  4. ; unless we add callback functions to the program.
  5. ;-------------------------------------
  6.  
  7. NAME                    INVID
  8. DESCRIPTION             'A Do Nothing Program'
  9. EXETYPE                 WINDOWS
  10. STUB                    'WINSTUB.EXE'
  11. ;
  12. ; You can have fun with the STUB definition.  WINSTUB.EXE is just 
  13. ; a DOS program that runs if you start your Windows program under DOS
  14. ; instead of Windows.  You can replace WINSTUB.EXE with whatever DOS 
  15. ; program you want.  
  16. ;
  17. CODE                    PRELOAD MOVEABLE DISCARDABLE
  18. DATA                    PRELOAD MOVEABLE MULTIPLE
  19. HEAPSIZE                1024
  20. STACKSIZE               8192
  21. EXPORTS                 WndProc
  22.