home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 13 / 13.iso / p / p043 / 7.ddi / GWCAD / OPPS / FORMPARA.DEF < prev    next >
Encoding:
Text File  |  1994-06-23  |  889 b   |  33 lines

  1.  
  2. NAME         formpara       ; application's module name
  3.  
  4. DESCRIPTION  'OPPS Microsoft Windows Application'
  5.  
  6. EXETYPE      WINDOWS       ; required for all Windows applications
  7.  
  8. STUB         'WINSTUB.EXE' ; Generates error message if application
  9.                ; is run without Windows
  10.  
  11. ;CODE can be moved in memory and discarded/reloaded
  12. CODE  PRELOAD MOVEABLE 
  13.  
  14. SEGMENTS
  15.     MAIN         PRELOAD    MOVEABLE
  16.     GRAPHICS     PRELOAD    MOVEABLE
  17.     PARAMETER    PRELOAD    MOVEABLE DISCARDABLE
  18.     POINTS       PRELOAD    MOVEABLE DISCARDABLE
  19.  
  20. ;DATA must be MULTIPLE if program can be invoked more than once
  21. DATA  PRELOAD MOVEABLE MULTIPLE
  22.  
  23.  
  24. HEAPSIZE     2048
  25. STACKSIZE    20480       ; recommended minimum for Windows applications
  26.  
  27.  
  28. ; All functions that will be called by any Windows routine
  29. ; MUST be exported.
  30.  
  31. EXPORTS
  32.     MainWndProc   @1   ; name of window processing function
  33.