home *** CD-ROM | disk | FTP | other *** search
/ CD Direkt 1995 #1 / Image.iso / cdd / winanw2 / wcdbrk2 / wcdbrk2.def < prev    next >
Text File  |  1993-02-24  |  868b  |  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. ;Exports Section is not needed if "Smart Callbacks" Option is used 
  24. ;EXPORTS
  25. ;    MAINWNDPROC    @1 ; name of window-processing function
  26. ;    About          @2 ; name of About processing function
  27.  
  28.