home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / SAMPLES / GDOSMEM / GDOSMEM.DE_ / GDOSMEM.DE
Encoding:
Text File  |  1993-02-08  |  769 b   |  27 lines

  1. ; module-definition file for generic -- used by LINK.EXE
  2.  
  3. NAME         Gdosmem       ; application's module name
  4.  
  5. DESCRIPTION  'Sample Microsoft Windows Application'
  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 can be moved in memory
  13. CODE  PRELOAD MOVEABLE
  14.  
  15. ;DATA must be MULTIPLE if program can be invoked more than once
  16. DATA  PRELOAD MOVEABLE MULTIPLE
  17.  
  18.  
  19. HEAPSIZE     1024
  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.