home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Fortran.51 / DISK6 / MULMIX_D.DE$ / MULMIX_D.bin
Text File  |  1991-04-08  |  958b  |  33 lines

  1. ; Module-definition file for FORTRAN mixed-language example.
  2.  
  3. NAME         MULMIX        ; application's module name
  4.  
  5. DESCRIPTION 'FORTRAN 5.1 Mixed-Language Example'
  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 and discarded/reloaded
  13. CODE  PRELOAD MOVEABLE DISCARDABLE
  14.  
  15. ;DATA should be SINGLE if program can be invoked only once
  16. DATA  PRELOAD MOVEABLE SINGLE
  17.  
  18.  
  19. HEAPSIZE     1024
  20. STACKSIZE    5120       ; recommended minimum for Windows applications
  21.  
  22.  
  23. ; All functions that will be called by any Windows routine
  24. ; must be exported.
  25.  
  26. EXPORTS
  27.     MainWndProc     @1   ; name of window processing function
  28.     AboutBoxFunc    @2   ; name of "About" processing function
  29.     MultiplyBoxFunc @3   ; name of "Multiply" processing function
  30. IMPORTS
  31.     MULLIB.MUL
  32. 
  33.