home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l351 / 1.ddi / MSVC / LIB / EXAMPLE.DEF < prev    next >
Encoding:
Text File  |  1992-05-14  |  957 b   |  25 lines

  1. ; Example .DEF file for compiling with Microsoft C/C++ 7.00
  2. ; $Id: example.def 1.2 92/05/14 10:23:41 rob Exp $
  3.  
  4. ;
  5. ; The first two entries are required -- they direct the linker
  6. ; to produce an executable that 286|DOS-Extender can load.
  7. PROTMODE
  8. EXETYPE WINDOWS 3.0
  9.  
  10. ;
  11. ; GORUN286.EXE is Phar Lap's default stub program for programs
  12. ; that use 286|DOS-Extender.  GORUN286 spawns RUN286.EXE, and directs
  13. ; the DOS-Extender to load the application.  We find this much
  14. ; more useful than printing out an error message.  LINK.EXE requires
  15. ; that GORUN286.EXE be found in your PATH environment varaible.
  16. STUB 'gorun286.exe'        ; Convenient, not required
  17.  
  18. ;
  19. ; BCC286_EXE is used to trigger certain responses in RUN286.EXE, with
  20. ; respect to floating-point emulation.  The name of this symbol *will*
  21. ; change in the next release.  This export is only required for programs
  22. ; that use floating-point emulation code.
  23. EXPORTS
  24.     BCC286_EXE=__astart
  25.