home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / qexit.zip / QEXIT.DEF < prev    next >
Text File  |  1990-11-25  |  629b  |  24 lines

  1. ;module-definition file for generic -- used by link4.exe
  2.  
  3. NAME    qexit       ; application's module name
  4.  
  5. DESCRIPTION 'Sample Microsoft Windows Application'
  6.  
  7. STUB    'WINSTUB.EXE' ; Generates error message if application
  8.                       ; is run without Windows
  9.  
  10. CODE    MOVEABLE      ; code can be moved in memory
  11.  
  12. ;DATA must be MULTIPLE if program can be invoked more than once
  13.  
  14. DATA    MOVEABLE MULTIPLE
  15.  
  16. HEAPSIZE  1024
  17. STACKSIZE 4096  ; recommended minimum for Windows applications
  18.  
  19. ; All functions that will be called by any Windows routine
  20. ; MUST be exported.
  21.  
  22. EXPORTS
  23.     qexitWndProc   @1  ; name of window processing function
  24.