home *** CD-ROM | disk | FTP | other *** search
/ 5 Star Games: Windows Edition / 5StarsGames-Windows31Edition.iso / bonus / wcdbrk2 / wcdbrk2.def < prev    next >
Text File  |  1991-05-31  |  798b  |  28 lines

  1. ;module-definition file for Icon - used by TLINK.EXE
  2.  
  3. NAME    WCDBRK2           ; application's module name
  4.  
  5. DESCRIPTION 'Code Breaker Game'
  6.  
  7. EXETYPE WINDOWS       ; Required for all Windows applications
  8.  
  9. STUB    'WINSTUB.EXE' ; Generates error message if application
  10.                              ; is run without windows
  11.  
  12. CODE    PRELOAD MOVEABLE DISCARDABLE; code can be moved in memory and discarded/reloaded
  13.  
  14. ;DATA must be MULTIPLE if program can be invoked more than once
  15.  
  16. DATA    PRELOAD MOVEABLE MULTIPLE
  17.  
  18. HEAPSIZE  1024
  19. STACKSIZE 10240  ; recommended minimum for Windows applications
  20.  
  21. ; All functions that will be called by any Windows routine
  22. ; MUST be exported
  23.  
  24. EXPORTS
  25.     MainWndProc    @1 ; name of window-processing function
  26.     About          @2 ; name of About processing function
  27.  
  28.