home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c045 / 5.ddi / GENERIC / GENERIC.DE$ / GENERIC.bin
Encoding:
Text File  |  1992-01-01  |  741 b   |  26 lines

  1. ; module-definition file for generic
  2.  
  3. NAME          GENERIC       ; application's module name
  4.  
  5. DESCRIPTION  'Sample Microsoft Windows Application'
  6.  
  7. EXETYPE       WINDOWS       ; required for all Windows applications
  8.  
  9. PROTMODE
  10.  
  11. ;CODE can be moved in memory and discarded/reloaded
  12. CODE  PRELOAD MOVEABLE DISCARDABLE
  13.  
  14. ;DATA must be MULTIPLE if program can be invoked more than once
  15. DATA  PRELOAD MOVEABLE MULTIPLE
  16.  
  17. HEAPSIZE     1024
  18. STACKSIZE    5120           ; recommended minimum for Windows applications
  19.  
  20. ; All functions that will be called by any Windows routine
  21. ; MUST be exported.
  22.  
  23. EXPORTS
  24.     MainWndProc   @1        ; name of window processing function
  25.     About         @2        ; name of "About" processing function
  26.