home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c031 / 1.ddi / README.TXT < prev    next >
Encoding:
Text File  |  1992-03-20  |  24.8 KB  |  598 lines

  1.                                README.TXT File
  2.                README file for Microsoft(R) C/C++, Version 7.0
  3.                   (C) Copyright Microsoft Corporation, 1992
  4.  
  5.      This document contains release notes for version 7.0 of Microsoft
  6.      C/C++ and its libraries for MS-DOS(R) and Microsoft Windows(TM)
  7.      operating systems.
  8.  
  9. ========================< IMPORTANT REQUIREMENT >==========================
  10.  
  11.      Microsoft C/C++ version 7.0 requires DPMI services.  If you wish 
  12.      to use Windows as your development environment, Windows provides 
  13.      DPMI services for you.  TO USE MS-DOS AS YOUR DEVELOPMENT 
  14.      ENVIRONMENT YOU MUST INSTALL 386-Max TO PROVIDE THESE SERVICES. 
  15.  
  16. ================================< CONTENTS >===============================
  17.  
  18.  
  19.      This file has the following sections:
  20.  
  21.  
  22.      Part 1: ESSENTIAL WINDOWS 3.0 COMPATIBILITY INFORMATION
  23.  
  24.      Part 2: Setup and Configuration Notes 
  25.  
  26.      Part 3: Support for Windows 3.1 in the Microsoft Foundation Classes
  27.  
  28.      Part 4: List of Additional Readme Files 
  29.  
  30.      Part 5: List of Topics in the DETAILS.TXT file
  31.  
  32.  
  33. =======< Part 1: ESSENTIAL WINDOWS 3.0 COMPATIBILITY INFORMATION >======
  34.  
  35.  
  36.      To make it easy for you to update to the latest Windows APIs
  37.      and the new features of Windows 3.1, MS C/C++ supports
  38.      Windows 3.1 by default. Windows 3.0 applications that are
  39.      rebuilt with C/C++ will target Windows 3.1 by default.
  40.      Therefore, attempting to run them under Windows 3.0
  41.      generates an error.
  42.  
  43.      If you do not wish to take advantage of new Windows 3.1
  44.      functionality, or if you want your applications to run on either
  45.      Windows 3.0 or Windows 3.1, then follow these instructions for
  46.      building Windows 3.0 applications.
  47.  
  48.  
  49.      Building Windows 3.0 Projects with PWB
  50.      --------------------------------------
  51.  
  52.      New projects:
  53.  
  54.           Choose one of the four Windows 3.0 project templates when
  55.           prompted for a project template.
  56.  
  57.      Rebuilding existing projects:
  58.  
  59.           Reset the current project template by choosing Project
  60.           Templates from the Options menu and then selecting Set
  61.           Project Template. Note: This resets all build options,
  62.           so check the resulting options to ensure they are
  63.           appropriate for your project.
  64.  
  65.           An alternative method is to add the WINVER=0x300 macro in
  66.           the Additional Global C/C++ Options dialog box and to
  67.           modify the RC Build command in the Customize Project Template 
  68.           dialog box. This dialog box can be accessed from the Project 
  69.           Templates option on the Options menu. To make this modification,
  70.           change:
  71.  
  72.           command rc_exe "$(RC) $(RESS) $@"
  73.           
  74.           to:
  75.  
  76.           command rc_exe "$(RC) /30 $(RESS) $@"
  77.  
  78.  
  79.      Building Windows 3.0 Projects from the Command Line
  80.      ---------------------------------------------------
  81.  
  82.      The two methods for building Windows 3.0 projects from the
  83.      command line are described in this section.
  84.  
  85.  
  86.           Using the WINVER Macro
  87.           ----------------------
  88.  
  89.           To compile Windows 3.0 applications, you must either add
  90.           the line:
  91.  
  92.           #define WINVER 0x0300
  93.  
  94.           to your source file before the line including the WINDOWS.H
  95.           include file, or add the /DWINVER=0x0300 option when compiling
  96.           all modules in the Windows 3.0 project. This prevents any 
  97.           Windows 3.1-specific types, functions, or definitions from 
  98.           being included.  
  99.  
  100.  
  101.           Using the RC /30 Switch
  102.           -----------------------
  103.  
  104.           In order to ensure that your application is Windows
  105.           3.0-compatible, use the RC /30 option when combining
  106.           your .EXE and .RES files. Use this option whenever RC
  107.           is invoked after your .EXE file is linked, but do
  108.           not use the /30 option with the /r option.
  109.  
  110.  
  111.      Using Windows 3.1 Features in Windows 3.0 Applications
  112.      ------------------------------------------------------
  113.  
  114.      You can also build a Windows 3.0-compatible application that
  115.      conditionally makes use of new Windows 3.1 features if the
  116.      application is running on a Windows 3.1 system. To do this,
  117.      use the RC /30 command-line option, but do not use the
  118.      #define directive to define WINVER equal to 0x0300.  Use the
  119.      GetVersion() API to determine the version of Windows that is
  120.      running before calling any new Windows 3.1 APIs.
  121.  
  122.      The sample code below demonstrates how the global constant
  123.      fWin31 can be set to TRUE if Windows version 3.1 or greater
  124.      is running on the system.  You can use similar code in your
  125.      application initialization.
  126.  
  127.      extern BOOL fWin31;
  128.  
  129.      {
  130.          UINT version;
  131.          fWin31 = FALSE;
  132.          version = LOWORD(GetVersion());
  133.          if (((LOBYTE(version) << 8 ) | HIBYTE(version)) >= 0x030a)
  134.          {
  135.              fWin31 = TRUE;
  136.          }
  137.      }
  138.  
  139.      You can call new Windows 3.1 functions directly in your
  140.      source as long as you link to the Windows 3.1 LIBW.LIB. In
  141.      this case, no call to GetProcAddress() is needed.  However,
  142.      on a computer running Windows 3.0, you must make sure new
  143.      Windows 3.1 functions are not called. Here's an example of
  144.      how this can be done:
  145.  
  146.      extern BOOL fWin31;
  147.  
  148.      if (fWin31)
  149.      {
  150.          ScrollWindowEx(hwnd, ...);
  151.      }
  152.      else
  153.      {
  154.          ScrollWindow(hwnd, ...);
  155.      }
  156.  
  157.  
  158.      Using the MFC Library with Windows 3.0 and Windows 3.1
  159.      ------------------------------------------------------
  160.  
  161.      The MFC library header files can build applications targeted for 
  162.      either Windows 3.0 or Windows 3.1.  Windows 3.1 is the default 
  163.      target. This means that all of the new Windows 3.1 APIs are available
  164.      for use. If you must target an application for Windows 3.0 only, you
  165.      should define WINVER=0x0300 before including AFXWIN.H in your source
  166.      files. This restricts the Windows and MFC interfaces to Windows 
  167.      3.0-compatible versions only.
  168.  
  169.      The compiled MFC library (object code) must always be built for 
  170.      Windows 3.1. It will fail to compile if WINVER is defined to be 0x0300.
  171.      The library is compatible with both Windows 3.0 and Windows 3.1 
  172.      run-time systems.  If you customize the MFC library, you should not
  173.      redefine WINVER; the default value (WINVER=0x030A) is sufficient.
  174.  
  175.  
  176. ===================< Part 2: Setup and Configuration Notes >===============
  177.  
  178.  
  179.      Getting Help on Error Messages
  180.      ------------------------------
  181.  
  182.      To find information on any error message, you can access Help by
  183.      using the stand-alone utility QuickHelp, by using the Help menu in
  184.      the Programmer's WorkBench (PWB), or by checking the "Comprehensive
  185.      Index and Errors Reference" manual.
  186.  
  187.      To find out about an error message using QuickHelp, at the
  188.      operating-system prompt type:
  189.  
  190.           QH cxxxx
  191.  
  192.      where <c> is the error's alphabetic prefix and <xxxx> is the
  193.      four-digit error number.
  194.  
  195.      To find out more about how to view errors from within PWB, choose
  196.      "Errors" from the Microsoft Advisor Contents screen in PWB.
  197.      (The Microsoft Advisor Contents screen appears when you choose
  198.      "Contents" from the Help menu in PWB.)
  199.  
  200.      Some errors are documented in Help but are not in the "Comprehensive
  201.      Index and Errors Reference" manual. See ERRATA2.TXT for a listing of
  202.      these errors.
  203.  
  204.  
  205.      Copying a Single File from Installation Disks
  206.      ---------------------------------------------
  207.  
  208.      See the ANSWERS.TXT file for instructions.
  209.  
  210.  
  211.      Installation of Graphics Sample Files
  212.      -------------------------------------
  213.  
  214.      Setup does not create the SORTDEMO and GRAPHICS subdirectories, 
  215.      or copy their associated graphics samples, unless you request that
  216.      Setup install the graphics libraries.
  217.  
  218.  
  219.      Loading Windows From Your AUTOEXEC.BAT File
  220.      -------------------------------------------
  221.  
  222.      If you allow Setup to modify your AUTOEXC.BAT file, and your
  223.      AUTOEXEC.BAT file contains a statement that loads Windows, the 
  224.      resulting behavior may cause unexpected system problems. Therefore,
  225.      if your AUTOEXEC.BAT file loads Windows, do not allow Setup to 
  226.      modify your AUTOEXEC.BAT file. Save the changes during Setup and 
  227.      modify your file once Setup has finished.
  228.  
  229.  
  230.      Using Windows 3.0 and HIMEM.SYS with More Than 16 MB RAM
  231.      --------------------------------------------------------
  232.  
  233.      Installing C/C++, which provides a new version of HIMEM.SYS, may
  234.      cause a system crash if your computer has more than 16 MB of RAM.
  235.      This is not an issue for Windows 3.1 users or 386-Max users.
  236.      If you do not want to upgrade to Windows 3.1 or you want to run
  237.      both versions of Windows, replace the HIMEM.SYS driver installed
  238.      by C/C++ with the HIMEM.SYS driver from Windows 3.0.
  239.  
  240.  
  241.      Incorrect Drivers May Prevent Windows From Running
  242.      --------------------------------------------------
  243.  
  244.      The Setup program adds a DEVICE statement for the CVW1.386 driver to 
  245.      your SYSTEM.INI file. If your SYSTEM.INI file also contains a DEVICE
  246.      statement for CV1.386, a driver no longer necessary for C/C++, 
  247.      Windows 3.x will not run. Remove the DEVICE statement for CV1.386 
  248.      to solve this problem.
  249.  
  250.  
  251.      Avoiding Data Loss When Using SMARTDRV.EXE
  252.      ------------------------------------------
  253.  
  254.      SMARTDRV.EXE does not write data to disk immediately. If your computer
  255.      should crash after the time data is written to the cache and before
  256.      the data is written to the disk, data can be lost. Issuing the
  257.      following command causes SMARTDRV to write all data in the cache to
  258.      the disk:
  259.  
  260.      SMARTDRV /c
  261.  
  262.  
  263.      Setup May Not Detect Foreign Disk Cache
  264.      ---------------------------------------
  265.      Setup may install SMARTDRV.EXE if it does not detect the foreign 
  266.      disk cache installed on your system. Remove the DEVICE statements 
  267.      for SMARTDRV.EXE from your AUTOEXEC.BAT and CONFIG.SYS files to 
  268.      resolve this problem.
  269.  
  270.  
  271.      Fragmented Memory May Cause Internal Compiler Error
  272.      ---------------------------------------------------
  273.  
  274.      The compiler generates an internal error R6900 if memory has been
  275.      fragmented in such a way that chunks of free memory greater than
  276.      4K exist between allocated memory blocks. To determine if memory
  277.      fragmentation is the cause of the problem, check memory usage with
  278.      the techniques described in Chapter 3 of the "Getting Started"
  279.      manual. Changing the way memory is allocated, or modifying the
  280.      behavior of TSRs, may reduce memory fragmentation.
  281.  
  282.  
  283.      Programs That May Be Incompatible with SMARTDRV.EXE
  284.      ---------------------------------------------------
  285.  
  286.      The following applications may be incompatible with SMARTDRV.EXE,
  287.      version 4.0:
  288.  
  289.      - The Disk Protect feature in Norton Utilities version 6.0
  290.  
  291.        Do not use the Disk Protect feature in Disk Monitor. If you do,
  292.        you will encounter an error and your system may hang if you try
  293.        to write to the protected drive. If you want to write to and
  294.        cache a protected drive, use the Norton cache program when using
  295.        Disk Monitor.
  296.  
  297.      - The Calibrate program in Norton Utilities version 6.01
  298.  
  299.        Calibrate fails on the Disk Mapping test if SMARTDRV is enabled.
  300.  
  301.      - DoubleDisk from Vertisoft
  302.  
  303.        Do not enable write-behind caching for DoubleDisk compressed
  304.        partitions.
  305.  
  306.      - Storage Dimensions SCSI Driver (SSTOR.SYS)
  307.  
  308.        Using the SSTOR.SYS driver, the SCSI drive appears corrupted when
  309.        SMARTDRV is loaded. The disk's contents are not altered, but they
  310.        are inaccessible when using SMARTDRV.
  311.  
  312.      The following drivers, installed in a CONFIG.SYS file, are
  313.      incompatible with SMARTDRV.EXE version 4.0:
  314.  
  315.      - The SuperStor utility from Addstor (SSTORDRV.SYS)
  316.  
  317.        Do not use the Create Mountable Drive or Mount and Dismount features
  318.        of SuperStor after SMARTDRV is loaded. You must configure your
  319.        SuperStor partitions before loading SMARTDRV. If your AUTOEXEC.BAT
  320.        file includes "mount" configuration commands, make sure that the
  321.        SMARTDRV command line follows the SuperStor configuration command
  322.        lines.
  323.  
  324.        Also, you will receive read-write errors if you use SMARTDRV to
  325.        cache a SuperStor compressed drive. To prevent SMARTDRV from
  326.        caching the compressed drive, you must include the driver letter-
  327.        option on the SMARTDRV command line.
  328.  
  329.        For example, if drive C is the uncompressed drive, and drives E
  330.        and F are the compressed SuperStor drives, you would type the
  331.        following command line or include it in your AUTOEXEC.BAT file:
  332.  
  333.        smartdrv e- f-
  334.  
  335.      - The network driver from DNA Networks Inc. (STATION.SYS)
  336.  
  337.        Using both STATION.SYS and SMARTDRV may cause your system to hang.
  338.  
  339.      - Versions prior to version 7.x of the driver for the
  340.        Bernoulli Box (RCD.SYS)
  341.  
  342.        The RCD.EXE program requires that driver RCD.SYS be installed to
  343.        use the Bernoulli Box. When SMARTDRV is running, RCD.EXE does
  344.        not recognize that RCD.SYS has been installed.
  345.  
  346.      - The Norton Antivirus utility (NAV_.SYS and NAV&.SYS)
  347.  
  348.        The NAV_.SYS and NAV&.SYS drivers for the Norton Antivirus utility
  349.        may generate "Not enough memory" errors or hang your system when
  350.        loading SMARTDRV.EXE. One workaround is to use the /L command-line
  351.        option to load SMARTDRV.EXE into low memory. An alternative is using
  352.        the /B option with NAV&.SYS to avoid the NAV&.SYS bug that causes
  353.        your system to hang.
  354.  
  355.      The following driver, installed in an AUTOEXEC.BAT file, is
  356.      incompatible with SMARTDRV.EXE version 4.0:
  357.  
  358.      - DataMonitor version 7.1 by PC Tools (DATAMON.*)
  359.  
  360.        Loading DataMonitor after SMARTDRV is installed may cause your
  361.        system to hang.
  362.  
  363.  
  364.      Setup Generates a "Cannot write to library file" Error
  365.      -------------------------------------------------------
  366.  
  367.      If your TMP environment variable is pointing to a RAM drive that
  368.      doesn't have enough space for the temporary files that Setup uses
  369.      during the library-building process, this error can result. To solve
  370.      this problem, set the TMP variable to your hard disk, if your hard
  371.      disk has sufficient space, or select fewer libraries from the Custom
  372.      Installation Setup screen. You can run Setup again later to build
  373.      additional libraries.
  374.  
  375.  
  376.      Installation Order May Affect 386-Max Performance
  377.      -------------------------------------------------
  378.  
  379.      Installing MS C/C++ before 386-Max can improve 386-Max's capability
  380.      for managing the upper memory area.
  381.  
  382.  
  383.      Using Earlier Versions of 386-Max with C/C++
  384.      --------------------------------------------
  385.  
  386.      If you already use 386-Max, be sure to upgrade your system with the
  387.      version of 386-Max that is supplied with Microsoft C/C++. This newer
  388.      version includes bug fixes that affect the performance of C/C++.
  389.  
  390.  
  391. ===< Part 3: Support for Windows 3.1 in the Microsoft Foundation Classes >===
  392.  
  393.  
  394.      The Microsoft Foundation classes provide support for the
  395.      enhancements provided in Windows version 3.1. The following
  396.      features are described in technical notes in the
  397.      \C700\MFC\DOC directory and demonstrated in sample programs in
  398.      \C700\MFC\SAMPLES. These API functions are documented only in 
  399.      the Help system. The following list describes the enhancements 
  400.      that can be used to develop applications for both Windows 3.0 
  401.      and Windows 3.1.
  402.  
  403.      - The development and use of custom controls is supported. In
  404.        addition, owner draw controls and bitmap buttons are provided. 
  405.        See TN014.TXT and the sample application CTRLTEST.
  406.  
  407.      - To improve robustness, the Microsoft Foundation Class Library 
  408.        fully supports the STRICT data types defined in the Windows 3.1 
  409.        interface file, WINDOWS.H.
  410.  
  411.      - Common dialog operations are now supported with easily
  412.        customized classes including CFileDialog (for both File Open
  413.        and File Save As), CFindReplaceDialog (to implement modeless
  414.        find and replace), CColorDialog (for color selection),
  415.        CPrintDialog (for both print setup and print), and
  416.        CFontDialog (for font selection). These new dialogs are
  417.        described in TN013.TXT.
  418.  
  419.      - The Microsoft Foundation Classes were designed and implemented
  420.        using the Windows 3.1 Debug Kernel.  If your application issues
  421.        any Debug Kernel warnings, they are most likely due to the way you
  422.        structured your application code.  If you receive any Fatal Exit
  423.        messages, the cause is most likely a result of an incorrectly
  424.        used feature.  Some Debug Kernel warnings (such as 'Invalidate with
  425.        fErase == FALSE prevents EraseBackground') will be issued even
  426.        when features are used correctly .
  427.  
  428.      - Dialog boxes now feature a gray background that is easily 
  429.        customized.
  430.  
  431.      - OLE servers now register themselves at startup so that
  432.        users do not need to use REGEDIT.EXE.
  433.  
  434.      - Microsoft Foundation Classes now support the Microsoft Pen Windows
  435.        controls (see TN015.TXT). A sample application, SPEAKN.EXE,
  436.        is provided to demonstrate the use of Pen and MultiMedia. 
  437.        A pen palette and/or MultiMedia extensions are NOT required. 
  438.        Applications developed with the Microsoft Foundation classes 
  439.        are automatically "pen-aware."
  440.  
  441.      - Using multiple inheritance with Microsoft Foundation
  442.        classes is demonstrated in the sample application MINSVRMI,
  443.        a small OLE server that uses multiple inheritance.
  444.  
  445.      - For applications that target Windows 3.1 only, the Microsoft 
  446.        Foundation Class Library supports the most useful of the new 
  447.        Windows 3.1 API functions and messages.
  448.  
  449.  
  450. ==================< Part 4: List of Additional Readme Files >==============
  451.  
  452.  
  453. FILE                      CONTENTS
  454. ----                      --------
  455.  
  456. ANSWERS.TXT               Answers to commonly asked questions
  457. DETAILS.TXT               Product notes for Microsoft C/C++. See Part 5
  458.                           of this file for a list of topics in DETAILS.TXT
  459. ERRATA1.TXT               Documentation additions and corrections for
  460.                           "Environment and Tools," "C++ Tutorial,"
  461.                           "C Language Reference," "C++ Language
  462.                           Reference," and "Programming Techniques."
  463. ERRATA2.TXT               Documentation additions and corrections for
  464.                           "Run-Time Library Reference," "Class Libraries
  465.                           Reference," "Class Libraries User's Guide,"
  466.                           "Comprehensive Index and Errors Reference,"
  467.                           CLANG.HLP, CL.HLP, LINK Help, header files, and
  468.                           Microsoft Class Libraries Quick-Reference Card
  469. BIN\MSD.TXT               Documentation for diagnostics utility
  470. SOURCE\MOVE\MOVEAPI.TXT   Move - Help document
  471. SOURCE\STARTUP\README.TXT Startup build instructions
  472.  
  473. From the C700\SAMPLES directory:
  474.     IOSTUTOR\README.TXT     Instructions for building iostream demo
  475.     CPPTUTOR\OOD\OODEMO.TXT Notes on the OODEMO sample
  476.     SAMPLES.TXT             Samples document
  477.  
  478. MFC README Files:
  479.     MFC\README.TXT        Introduction to the MFC library
  480.     MFC\SRC\README.TXT    How to build the libraries
  481.     MFC\LIB\README.TXT    Information file for MFC Libraries
  482.  
  483. MFC README Files from the MFC\DOC directory:
  484.     README.TXT            Overview of tech notes
  485.     TN001.TXT             Tech note on class registration
  486.     TN002.TXT             Tech note on persistence
  487.     TN003.TXT             Tech note on handle maps
  488.     TN004.TXT             Tech note on templates
  489.     TN005.TXT             Tech note on MDI
  490.     TN006.TXT             Tech note on message maps
  491.     TN007.TXT             Tech note on Windows debugging aids
  492.     TN008.TXT             Tech note on Foundation OLE support
  493.     TN009.TXT             Tech note on writing an OLE client with MFC
  494.     TN010.TXT             Tech note on writing an OLE server with MFC
  495.     TN011.TXT             Tech note on DLL support
  496.     TN012.TXT             Tech note on robustness issues 
  497.                                        (including WIN 3.1 STRICT)
  498.     TN013.TXT             Tech note on standard dialog classes
  499.     TN014.TXT             Tech note on custom controls
  500.     TN015.TXT             Tech note on Pen Windows
  501.     TN016.TXT             Tech note on multiple inheritance
  502.  
  503. MFC README Files from the MFC\SAMPLES directory:
  504.     ABOUT2\README.TXT         Information file for About2
  505.     HELLO\README.TXT          Hello/Generic application
  506.     README.TXT                Explanation of the MFC Samples
  507.     TEMPLDEF\README.TXT       Instructions
  508.     TESTCLNT\README.TXT       MFC OLE Test Client Sample
  509.     TESTSERV\README.TXT       MFC OLE Test Server Sample
  510.     TUTORIAL\CHAR\README.TXT  Tutorial samples applications
  511.     TUTORIAL\README.TXT       Tutorial samples applications
  512.     TUTORIAL\WIN\README.TXT   Tutorial samples applications
  513.  
  514.      IMPORTANT: See README.SDK for release information relating to the
  515.      Windows 3.1 SDK product. Documentation for the Windows 3.1 functions 
  516.      is available in Help only.
  517.  
  518.  
  519. =================< Part 5: Topics Covered in DETAILS.TXT >=================
  520.  
  521.  
  522.      See the DETAILS.TXT file for information on the following topics:
  523.  
  524.      - Using PWB
  525.           Running PWB in a Window  
  526.           Using Precompiled Headers from PWB
  527.           New PWB Switches: Friction and Factor 
  528.           Minimum Memory Requirement for Accessing Help in PWB
  529.      - Command-Line Options
  530.           New CL Default is /Od if Optimizations Not Specified
  531.           Mixing P-Code and Fully Optimized Machine Code
  532.      - C++ Topics
  533.           Destructors for Objects in Global and Static Arrays
  534.           Defining const struct Parameters for Member Functions
  535.           Return Types for Based Virtual Functions
  536.           Calling Temporary Objects of Types with Destructors
  537.           Explicit Conversion Recommended for Member Functions
  538.           Function-Style Initializers Starting with Casts
  539.      - Specifying Program Starting Execution Points
  540.           Windows 3.x Executable Files (EXE)
  541.           Windows 3.x Dynamic-Link Libraries (DLL)
  542.           Windows 3.x and the NOCRT Libraries
  543.      - Run-Time Support for Windows Exit Procedure Routines
  544.           Information on the Windows WEP Routine
  545.           Providing Your Own DLL Termination Routine
  546.           General Notes
  547.           Library Initialization Code in Windows DLLs
  548.      - New Function and Pragma Behavior
  549.           Using the Intrinsic Version of strlen
  550.           The check_pointer Pragma
  551.           The data_seg Pragma
  552.      - Identifier Naming Issues
  553.           Finding Local Static Variables in Browser Information
  554.           Missing Symbol Names for enums
  555.           Long Identifier Names Create Problems for LIB.EXE
  556.      - Using the CodeView(R) Debugger with MS C/C++ 
  557.           CodeView Now Runs in a Windows-Like Environment
  558.           CodeView Error When Debugging Programs Built With Class Libraries
  559.           Extended-Line Modes Enabled for CodeView Debugger
  560.           Remote Debugging with CodeView
  561.           Debugging Locally on an 80286
  562.           Running CodeView on an 80286 Computer
  563.           Debugging P-Code
  564.           CodeView's Access to Function Code in Libraries
  565.           Unloading DLLs When CodeView Terminates
  566.           Removing CodeView 3.07 from SDK Program Manager Group
  567.           Unsuccessful Connection to Remote Terminal
  568.           Running Screen Saver Programs While Debugging
  569.           DOS Session Running in a Window Does Not Have Mouse Support
  570.           Application I/O When Debugging Can Cause Screen Corruption
  571.           Recovering From "Internal Debugger Error"
  572.           Debugging Applications That Use a Mouse
  573.           Debugging Basic or FORTRAN in the Windows Environment
  574.           Setting the Scope of the Show Address Option in CodeView
  575.           Disable the Minimize On Use Option When Debugging
  576.  
  577.  
  578.  
  579. =============================================================================
  580.  
  581.  
  582.      Microsoft, MS, MS-DOS, and CodeView are registered trademarks, and
  583.      Windows is a trademark of Microsoft Corporation.
  584.  
  585.      386-Max is a trademark of Qualitas, Inc.
  586.  
  587.      Bernoulli Box is a trademark of Iomega Corporation.
  588.  
  589.      Norton Utilities is a registered trademark of Peter Norton Computing.
  590.  
  591.      SuperStor is a trademark and Addstor is a registered trademark of
  592.      Addstor, Inc.
  593.  
  594.      NOTE: Microsoft improves its languages documentation at the time of
  595.      reprinting, so some of the information in this file may already be
  596.      included in your manuals.
  597.  
  598.