home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Low Level Languages / FORTRAN.500 / DISK6 / MULMIX.DE$ / MULMIX.bin
Encoding:
Text File  |  1991-04-12  |  990 b   |  33 lines

  1. ; Module-definition file for statically linked
  2. ; FORTRAN 5.10 mixed-language example.
  3.  
  4. NAME         MULMIX        ; application's module name
  5.  
  6. APPLOADER   '__MSLANGLOAD'
  7.  
  8. DESCRIPTION 'FORTRAN 5.1 Mixed-Language Example'
  9.  
  10. EXETYPE      WINDOWS 3.0   ; required for all Windows applications
  11.  
  12. STUB        'WINSTUB.EXE' ; Generates error message if application
  13.                            ;   is run without Windows
  14.  
  15. ;CODE can be moved in memory and discarded/reloaded
  16. CODE  PRELOAD MOVEABLE DISCARDABLE
  17.  
  18. ;DATA should be SINGLE if program can be invoked only once
  19. DATA  PRELOAD MOVEABLE SINGLE 
  20.  
  21.  
  22. HEAPSIZE     1024
  23. STACKSIZE    5120       ; recommended minimum for Windows applications
  24.  
  25.  
  26. ; All functions that will be called by any Windows routine
  27. ; must be exported.
  28.  
  29. EXPORTS
  30.     MainWndProc     @1   ; name of window processing function
  31.     AboutBoxFunc    @2   ; name of "About" processing function
  32.     MultiplyBoxFunc @3   ; name of "Multiply" processing function
  33.