home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c034 / 1.ddi / README.DOC < prev    next >
Encoding:
Text File  |  1990-03-08  |  48.1 KB  |  1,306 lines

  1.  
  2.                                README.DOC File
  3.  
  4.              Release Notes for the Microsoft(R) C Professional
  5.                       Development System, Version 6.0
  6.  
  7.                   (C) Copyright Microsoft Corporation, 1990
  8.                                           
  9.      This document contains release notes for version 6.0 of the
  10.      Microsoft C Professional Development System and libraries for
  11.      MS-DOS(R) and the Microsoft Operating System/2 (MS(R) OS/2). The
  12.      information in this document and in the Microsoft Advisor (on-line
  13.      help) is more up to date than that in the manuals.
  14.   
  15.      Microsoft improves its languages documentation at the time of
  16.      reprinting, so some of the information in this file may already be
  17.      included in your manuals.
  18.  
  19.  
  20.  
  21. ================================< Contents >================================
  22.  
  23.   
  24.      This file has ll parts:
  25.   
  26.                Part     Note
  27.                ----     ----
  28.                1        SETUP Program Notes
  29.  
  30.                2        Differences between C 5.1 and 6.0
  31.  
  32.                3        Compiler and C Language Notes
  33.  
  34.                4        Programmer's WorkBench (PWB) Notes
  35.  
  36.                5        CodeView and Utilities Notes
  37.  
  38.                6        Getting Help on Start-Up Error Messages
  39.  
  40.                7        Notes on "Installing and Using"
  41.  
  42.                8        Notes on "C Reference"
  43.  
  44.                9        Notes on "Advanced Programming Techniques"
  45.  
  46.                10       Notes on Patching the MOUCALLS.DLL Dynamic-
  47.                         Link Library (OS/2 1.1 Only)
  48.  
  49.                11       HIMEM, RAMDRIVE, and SMARTDRV
  50.  
  51.  
  52.  
  53. =======================< Part 1: SETUP Program Notes >=======================
  54.  
  55.  
  56.      Installation Program Notes
  57.      --------------------------
  58.  
  59.         - If you are already running QuickHelp as a keyboard monitor
  60.           under OS/2, disable it before running SETUP so it can copy
  61.           new versions of QuickHelp and MSHELP.DLL to your hard disk.
  62.  
  63.  
  64.  
  65. ===============< Part 2: Differences between C 5.1 and 6.0 >=================
  66.  
  67.  
  68.      For a complete discussion of the differences between Microsoft C
  69.      versions 5.1 and 6.0, see Appendix B of "Advanced Programming
  70.      Techniques."
  71.  
  72.  
  73.      Functions Declared as Float
  74.      ---------------------------
  75.  
  76.      In Microsoft C 5.1, functions declared as float always return a
  77.      result of type double. In C 6.0, functions declared as float
  78.      return a value of type float for ANSI compliance. This difference
  79.      will cause compatibility problems when linking C 6.0 objects with
  80.      C 5.1 objects and libraries that contain functions that return
  81.      values of type float.
  82.  
  83.      To remedy the problem, prototype each function in your C 5.1
  84.      libraries that returns type float as type double in your C 6.0
  85.      source code. Then compile with C 6.0. For example:
  86.  
  87.           double func_in_51_lib( float );
  88.  
  89.  
  90.      The sizeof Function Return Value
  91.      --------------------------------
  92.  
  93.      To comply with ANSI specifications, the sizeof function now
  94.      returns an unsigned int rather than an int. This may cause
  95.      problems in statements of the following form:
  96.  
  97.           -sizeof( expression )
  98.  
  99.      For example, the following line of code, used to position
  100.      a file pointer one record from the end, no longer works:
  101.  
  102.           fseek( file, (long)(-sizeof( record )), SEEK_END );
  103.  
  104.      Because sizeof returns an unsigned int, the record size is
  105.      zero-extended to a long value rather than sign-extended to the
  106.      appropriate signed value.
  107.  
  108.      To avoid this problem, you can cast the record size to a
  109.      long before you negate it, as follows:
  110.  
  111.           fseek( file, -((long)sizeof( record )), SEEK_END );
  112.  
  113.  
  114.      Arithmetic Operations on Signed Short Values
  115.      --------------------------------------------
  116.  
  117.      In C 5.1 and Microsoft QuickC(R) 2.0, arithmetic on constants of
  118.      type signed short is done using a signed long value. C 6.0
  119.      conforms to the ANSI specification by performing arithmetic
  120.      operations on signed shorts and yielding a signed short value.
  121.  
  122.      This causes overflow in some instances of constant arithmetic,
  123.      most noticeably, multiplication. For example, when interpreted
  124.      as a signed short, 48*1000 results in a value of -15232 rather
  125.      than 48000.
  126.  
  127.  
  128.      Hexadecimal Constants in Strings
  129.      --------------------------------
  130.  
  131.      Hexadecimal escape sequences in strings now conform to the ANSI
  132.      specification by treating every potential hexadecimal digit
  133.      following the \x as part of the constant. In C 5.1 and QuickC 2.0,
  134.      hexadecimal escape sequences are limited to three characters.
  135.  
  136.      Typically, you will notice this when using hexadecimal escape
  137.      sequences for length-preceded strings. Consider the following
  138.      example:
  139.  
  140.           char TypeArray[] =
  141.               "\x005float\x006double";
  142.  
  143.      In C 5.1 and QuickC 2.0, TypeArray contains the following bytes:
  144.  
  145.           <5>float<6>double<0>
  146.  
  147.      In C 6.0, TypeArray has the following bytes:
  148.  
  149.           _loatmouble<0>
  150.  
  151.      This is because in C 6.0, \x005f and \x006d are legal hexadecimal
  152.      sequences that represent the underscore and 'm' characters,
  153.      respectively.
  154.  
  155.      There are two ways to avoid this problem. The simplest is to
  156.      use string concatenation, as follows:
  157.  
  158.           char TypeArray[] =
  159.               "\x005"  "float"  "\x006"  "double";
  160.  
  161.      According to the ANSI standard, adjacent string literals are
  162.      concatenated after escape sequences have been calculated.
  163.  
  164.      A second solution is to use octal, which can never be more than
  165.      three digits. The use of octal requires a small calculation and
  166.      also requires that you pad out the digits with zeros on the left
  167.      if necessary. However, even older, non-ANSI compilers will support
  168.      this solution if portability is a concern.
  169.  
  170.  
  171.      The offsetof Macro
  172.      ------------------
  173.  
  174.      The offsetof macro (defined in STDDEF.H) takes a struct type
  175.      name and member name, and returns a type size_t value giving the
  176.      offset in bytes of the member from the beginning of the struct.
  177.  
  178.      The expression
  179.  
  180.           offsetof( type, member_name )
  181.  
  182.      yields the byte offset of the member from the beginning of the
  183.      struct.
  184.  
  185.      Loop Optimization (/Ol)
  186.      -----------------------
  187.  
  188.      The loop optimization option (/Ol) in C 6.0 has a different effect
  189.      than in C 5.1. To get the equivalent of the C 5.1 /Ol option
  190.      in C 6.0, use /Ole (loop code optimization and global register
  191.      optimization). See Chapter 1 of "Advanced Programming Techniques"
  192.      and on-line help for further details.
  193.  
  194.  
  195.  
  196. =================< Part 3: Compiler and C Language Notes >===================
  197.  
  198.      Compiler notes:
  199.  
  200.         - The CL and LINK environment variables work just as in
  201.           previous versions of Microsoft C. The contents of the
  202.           environment variable are interpreted as a series of command-
  203.           line options for the associated utility. Note, however, that
  204.           the use of these environment variables can cause
  205.           unpredictable build behavior under the Programmer's WorkBench
  206.           (PWB).
  207.  
  208.         - The CL command line can be used to specify the name of
  209.           an OS/2 or Microsoft Windows(TM) module-definition file to be
  210.           used by the linker. For example,
  211.  
  212.                CL CLOCK.C CLOCK.DEF
  213.  
  214.           tells CL to pass the name of the module-definition file
  215.           'CLOCK.DEF' to the linker after compiling.
  216.  
  217.         - The /Gm compiler option, as described in the "C Reference"
  218.           and in on-line help, is no longer supported by C 6.0.
  219.           The /Gm option placed near const items in the CONST segment.
  220.  
  221.         - When using the /qc and /Zr options together, specify them
  222.           in the following order on the command line:
  223.  
  224.                /qc /Zr
  225.  
  226.         - Using the setjmp and longjmp functions with global
  227.           optimization options /Ox, /Oe, /Ol, or /Og can cause
  228.           incorrect code to be generated. To ensure that the compiler
  229.           generates correct code, either compile without these
  230.           options, or use the optimize pragma to turn off /Oe, /Ol,
  231.           and /Og in functions containing setjmp and longjmp, as
  232.           follows:
  233.  
  234.                #pragma optimize( "elg",off )
  235.  
  236.                     . . . {function containing setjmp or longjmp}
  237.  
  238.                #pragma optimize( "",on )
  239.  
  240.  
  241.      Features added since the documentation was printed:
  242.  
  243.         - /BATCH Option. To disable prompting for library names or
  244.           other information and permit the use of CL in a batch or
  245.           command file, specify the /BATCH option.
  246.  
  247.         - To get the fastest possible code, use the following
  248.           optimization settings:
  249.  
  250.                /Oxaz /Grs
  251.  
  252.           The /Oz option causes the compiler to perform the most
  253.           aggressive type of loop optimization.
  254.  
  255.           To get the smallest possible code, use the following
  256.           settings:
  257.  
  258.                /Osleazr
  259.  
  260.           For small code with a greater margin of safety, use
  261.  
  262.                /Osler
  263.  
  264.         - The /Gh option allows building with Microsoft Windows 2.x
  265.           libraries. This option is not needed for versions of Windows
  266.           greater than 2.x. In addition, this feature exists only in C
  267.           6.0, and will be phased out in future versions of the
  268.           compiler.
  269.  
  270.  
  271.      C Language notes:
  272.  
  273.         - The return values for _setfont as described in on-line help
  274.           are incorrect. The _setfont function returns the font index
  275.           number if successful, or a negative number if unsuccessful.
  276.  
  277.         - The return values for the fstat function are described
  278.           incompletely in on-line help. Under DOS or versions of
  279.           OS/2 prior to 1.2, fstat returns the same value (the
  280.           modification time) in the st_mtime, st_atime, and st_ctime
  281.           fields, because that is the only value maintained by the
  282.           system.
  283.  
  284.           However, under OS/2 1.2's High Performance File System,
  285.           fstat returns the expected values in st_mtime (time the
  286.           file was last written), st_atime (time the file was last
  287.           accessed for reading or writing), and st_ctime (time the
  288.           file was created).
  289.  
  290.         - You cannot use a tag or typedef to add the members of an
  291.           anonymous (nameless) struct or union to another anonymous
  292.           struct or union. Instead, you must give the full definition
  293.           of the struct to be nested. Assume you have the following
  294.           anonymous struct:
  295.  
  296.                struct oneTag
  297.                {
  298.                    int aMem;
  299.                    int bMem;
  300.                };
  301.  
  302.           The following code fragment shows the incorrect way to
  303.           include the members of this struct in another anonymous
  304.           struct:
  305.  
  306.                struct anotherTag
  307.                {
  308.                    struct oneTag;       // INCORRECT
  309.                    int cMem;
  310.                };
  311.  
  312.           The correct method is to specify the nested struct fully:
  313.  
  314.                struct anotherTag
  315.                {
  316.                    struct              // CORRECT
  317.                    {
  318.                        int aMem;
  319.                        int bMem;
  320.                    };
  321.                    cMem;
  322.                };
  323.  
  324.         - The signal function has limitations when used to build
  325.           multithreaded applications or dynamic-link libraries.
  326.           Specifically, only signal(SIGFPE,...) is supported in a
  327.           multithreaded environment. To trap error or interrupt
  328.           conditions in this case, use direct calls to
  329.           DOSSETSIGHANDLER or DOSSETVEC.
  330.  
  331.  
  332.  
  333. ================< Part 4: Programmer's WorkBench (PWB) Notes >==============
  334.  
  335.  
  336.      PWB Build Procedure
  337.      -------------------
  338.  
  339.      When developing programs with PWB, you usually follow these basic
  340.      steps:
  341.  
  342.         - Edit your source file or files.
  343.         - Use the Build Options command on the Options menu to set
  344.           initial build options.
  345.         - Use the Compiler Options and Link Options commands to adjust
  346.           specific parameters.
  347.         - If you are building a multimodule program, use Set Program
  348.           List on the Make menu to specify the files that will be
  349.           included in the program.
  350.         - Choose Build or Rebuild All from the Make menu to
  351.           build your program.
  352.  
  353.      For more information, choose "Building and Running Programs" from
  354.      the Programmer's WorkBench contents screen in on-line help.
  355.  
  356.  
  357.      Building Presentation Manager Applications in PWB
  358.      -------------------------------------------------
  359.  
  360.      The Presentation Manager build options in PWB assume that
  361.      functions in your program use the _loadds attribute in the
  362.      functions that require it and that exported functions are
  363.      identified with the _export keyword.
  364.  
  365.      If your program does not identify exported and/or _loadds
  366.      functions in the function header, you need to do two things to
  367.      build the program successfully under PWB. First, select the
  368.      Windows Entry/Exit Codes check box in the C Compiler Options
  369.      dialog box. This is the equivalent of specifying /Gw on the
  370.      command line.
  371.  
  372.      Second, make sure the exported function names in your .DEF file
  373.      are all in uppercase so that they can be found correctly at link
  374.      time. You can also build the program successfully by disabling
  375.      the No Ignore Case option in the Link Options dialog box, but
  376.      this is not recommended.
  377.  
  378.      In particular, you will have the problems described here if you
  379.      use PWB to build the example programs in Charles Petzold's book
  380.      "Programming the OS/2 Presentation Manager." Programs built using
  381.      the makefiles provided in the book will run correctly, but
  382.      programs built from within PWB must follow the instructions
  383.      specified above.
  384.  
  385.  
  386.      Loading PWB Quickly
  387.      -------------------
  388.  
  389.      PWB consists of the basic editor and four editor extensions that
  390.      contain the functionality for building, linking, on-line help,
  391.      and the Source Browser. These editor extensions are loaded
  392.      automatically each time you invoke PWB.
  393.  
  394.      If you want PWB to load more quickly, you can rename some or all
  395.      of the PWB extensions and then load them only when they are
  396.      needed.
  397.  
  398.      For example, you can change the names of all the extension files
  399.      from *.MXT (DOS) or *.PXT to *.EXT. Then include the following
  400.      section in your TOOLS.INI file:
  401.  
  402.           [pwb-ext]
  403.           load:$PATH:pwbhelp.ext      ;On-line Help
  404.           load:$PATH:pwbc.ext         ;C compiler
  405.           load:$PATH:pwbrowse.ext     ;Source Browser
  406.           load:$PATH:pwbutils.ext     ;LINK, NMAKE, and CodeView
  407.  
  408.      To load all the extensions at once, execute the following in PWB:
  409.  
  410.           arg "ext" initialize
  411.  
  412.      With the default key assignments, this is
  413.  
  414.           ALT+A "ext" SHIFT+F8
  415.  
  416.      To load a single extension--the help extension, for example--you
  417.      can use the following:
  418.  
  419.           arg "load:$PATH:pwbhelp.ext" assign
  420.  
  421.      With the default key assignment, this translates to
  422.  
  423.           ALT+A "load:$PATH:pwbhelp.ext" ALT+=
  424.  
  425.      If you decide to rename the extensions and thus disable the
  426.      extension autoload feature of PWB, you still have the option
  427.      of starting up PWB with all the extensions loaded.
  428.  
  429.      To do this, define a macro in the PWB section of TOOLS.INI
  430.      and assign it to a key of your choice. The following TOOLS.INI
  431.      entry creates a macro called 'extload' and assigns it to the F11
  432.      key:
  433.  
  434.           extload:=arg "ext" initialize
  435.           extload:F11
  436.  
  437.      Then when you start PWB, you can use the /e option to execute
  438.      'extload' on start-up:
  439.  
  440.           PWB /e extload
  441.  
  442.  
  443.      PWB Notes
  444.      ---------
  445.  
  446.         - In OS/2 1.1, starting up PWB on a dual-monitor system will
  447.           result in PWB appearing on the monitor that was active at
  448.           the time the system was booted.
  449.  
  450.           For example, suppose you have both a color and a monochrome
  451.           monitor, and the color monitor is the active monitor when you
  452.           boot your machine. If you switch to the monochrome monitor
  453.           and then invoke PWB, PWB will appear on the color monitor.
  454.  
  455.           This problem does not exist under OS/2 1.2.
  456.  
  457.         - To avoid conflict with special characters used by the
  458.           PWB MAKE facility, file names in a PWB program list or in
  459.           customized build options can only have extensions that
  460.           contain the following characters:
  461.  
  462.                0─9
  463.                A─Z
  464.                a─z
  465.  
  466.           No other characters are allowed in a file-name extension.
  467.  
  468.         - The Command Line option on the Run menu in PWB cannot contain
  469.           characters that have special meaning for NMAKE. In particular,
  470.           you should not use the caret (^) or the dollar sign ($)
  471.           in command lines that are passed to your application by
  472.           PWB.
  473.  
  474.         - The CL environment variable is fully supported in version
  475.           6.0 of the C compiler. However, when building programs
  476.           from within PWB, you should disable the CL environment
  477.           variable to avoid interaction with PWB build settings.
  478.  
  479.         - You can launch the editor of your choice from within the
  480.           PWB integrated environment. For more information, consult
  481.           the on-line help for the Customize Menu option on the Run
  482.           menu.
  483.  
  484.         - The on-line help for the Customize Menu option on the Run
  485.           Menu is partially incorrect. It says that when you are
  486.           adding a command to the Run menu you can specify %S in the
  487.           Argument box to get the name of the current file. However,
  488.           to specify the current file as an argument, you must use
  489.           %s (lower-case s).
  490.  
  491.         - PWB handles the SHIFT+ALT and SHIFT+CTRL key assignments
  492.           differently depending on whether you are running in DOS or
  493.           OS/2. In DOS, a key sequence beginning with SHIFT+ALT or
  494.           SHIFT+CTRL only recognizes the unshifted value of the third
  495.           key:
  496.  
  497.                SHIFT+CTRL+<unshifted_character>
  498.                SHIFT+ALT+<unshifted_character>
  499.  
  500.           In OS/2, however, this key combination requires the shifted
  501.           version of the key to work correctly:
  502.  
  503.                SHIFT+CTRL+<shifted_character>
  504.                SHIFT+ALT+<shifted_character>
  505.  
  506.         - For information on how to keep system include files (include
  507.           file names surrounded by angle brackets) out of your list of
  508.           build dependencies, see on-line help for a description of
  509.           the Build switch's system/no system option.
  510.  
  511.         - You can add your own build information to a PWB makefile by
  512.           putting the following line at the end of the file:
  513.  
  514.                # << User_supplied_information >>
  515.  
  516.           You can then add your own NMAKE description file commands
  517.           without disturbing the information created by PWB's build
  518.           process.
  519.  
  520.           For more information, consult the on-line help for the Make
  521.           menu's Set Program List command.
  522.  
  523.  
  524.      OS/2 1.2 Long File-Name Support
  525.      -------------------------------
  526.  
  527.      OS/2 1.2 long file names are supported in all PWB file-handling
  528.      functions, with a couple of exceptions. This section defines
  529.      long file names, summarizes restrictions, and enumerates special
  530.      cases. See Part 5 for additional information on support of long
  531.      file names.
  532.  
  533.  
  534.      Long File Names
  535.  
  536.      To PWB, a "long file name" is any file name containing the
  537.      characters
  538.  
  539.           +=[];^,
  540.  
  541.      Also included is any file name containing a space, or any file
  542.      name whose base name is longer than eight characters. Long file
  543.      names can contain more than one period (.) and can have more
  544.      than three letters following the final period.
  545.  
  546.      However, files that are intended to be used as part of the build
  547.      process have more severe naming restrictions. To be used as part
  548.      of a build, the file name cannot contain spaces or any of the
  549.      special characters listed above.
  550.  
  551.      In addition, existing rules for specifying an extension apply:
  552.      the extension consists of a period (.) followed by one to three
  553.      alphanumeric characters. To avoid conflict with NMAKE, file-name
  554.      extensions should not contain any dollar signs ($).
  555.  
  556.  
  557.      Quoted File Names
  558.  
  559.      Any file name may be quoted anywhere. Quoting involves ONLY the
  560.      addition of the double-quote character (") at the beginning and
  561.      end of the complete file name, including the path. There is no
  562.      escape character, as quotes themselves are not valid file-name
  563.      characters. Some situations may require quoting of long file
  564.      names containing characters that were previously illegal.
  565.  
  566.  
  567.      File-Name Length
  568.  
  569.      Under OS/2 1.2, each portion of a file name is restricted in
  570.      length to 256 characters. In PWB and other utilities, the ENTIRE
  571.      file-name length is restricted to 200 characters.
  572.  
  573.  
  574.      Extensions
  575.  
  576.      For build purposes, file-name extensions are recognized as such
  577.      ONLY if they are three characters or fewer in length. Thus
  578.      'WAIT.C' is recognized as having an extension of '.C', while
  579.      'WAIT.C PROGRAM' is treated as if it has no extension.
  580.  
  581.  
  582.      Case Preservation
  583.  
  584.      OS/2 1.2 is case insensitive and case preserving. Thus, 'File' and
  585.      'FILE' both refer to the same file, but OS/2 will not perform any
  586.      case changes on the file names created or copied. PWB operates
  587.      similarly: case in file names is preserved as typed by the user,
  588.      but matches are made without regard to case.
  589.  
  590.  
  591.      Exceptions
  592.  
  593.      Help files may not have long file names. The Helpfiles switch,
  594.      therefore, does not support long file names.
  595.  
  596.  
  597.      What to Quote
  598.  
  599.      You must explicitly quote long file names in the following
  600.      situations:
  601.  
  602.         - File names inserted in a "%s" format field that could be long
  603.           file names. For example, if long file names could be used,
  604.           the Readonly switch, under OS/2, could be set to:
  605.  
  606.                readonly: attrib -r "%s"
  607.  
  608.         - Commands to be executed that happen to be long file names.
  609.           For example, for a program named "Change Attribute", the
  610.           readonly command above might instead be:
  611.  
  612.                readonly: "Change Attribute" -r "%s"
  613.  
  614.  
  615.      Disabled Keyboard in OS/2 1.1 Release 88300
  616.      -------------------------------------------
  617.  
  618.      If you are using release 88300 of OS/2 1.1 and running PWB in a
  619.      window, your keyboard may become disabled after choosing Run OS/2
  620.      Command or Execute on the Run menu. If you have this release,
  621.      contact your OS/2 distributor for upgrade information.
  622.  
  623.      This is not a problem with versions of OS/2 other than 88300,
  624.      nor does it occur when running PWB in a full-screen group.
  625.  
  626.  
  627.  
  628. =================< Part 5: CodeView and Utilities Notes >===================
  629.  
  630.  
  631.      CodeView notes:
  632.  
  633.         - The Microsoft CodeView(R) debugger now has a TOOLS.INI switch
  634.           that controls whether breakpoints, window configurations, and
  635.           other information is saved and restored from one debugging
  636.           session to the next. This switch, the Statefileread switch,
  637.           is set to yes if you want this information to be preserved,
  638.           and no if you do not.
  639.  
  640.           For further information, see "Configuring CodeView" in the
  641.           CodeView on-line help. Also, see the description of the /TSF
  642.           start-up option below.
  643.  
  644.         - Do not attempt to debug programs with code in include files
  645.           if those files are included prior to the main function.
  646.  
  647.         - When using CodeView to debug programs containing _fastcall
  648.           functions, you cannot call the _fastcall functions from
  649.           within CodeView.
  650.  
  651.         - Pressing CTRL+BREAK to end a debugging session while
  652.           recording debug history in OS/2 can result in a corruption
  653.           of the files used to record debug history. Turn off debug
  654.           history before ending a debugging session with CTRL+BREAK.
  655.  
  656.           If you do press CTRL+BREAK while debug history is on, do not
  657.           try to reuse the files containing the debug history
  658.           information (.CVH or .CVI files).
  659.  
  660.         - When debugging a graphics program or using two-monitor
  661.           debugging, make sure you have the most current version (7.0)
  662.           of the Microsoft Mouse driver installed. If you do not have
  663.           the most current version, or are using a mouse from another
  664.           manufacturer, you should use the /M option (disable mouse
  665.           support) in the situations referred to above.
  666.  
  667.  
  668.      CodeView features added since the documentation was printed:
  669.  
  670.           Start-up switches:
  671.  
  672.                /K     Disable keyboard monitor installation (OS/2) or
  673.                       disable hooking of the keyboard interrupt (DOS).
  674.                       See on-line help for further details.
  675.  
  676.                /TSF   Disable or enable the reading of the CodeView
  677.                       state file, depending on the setting of the
  678.                       Statefileread switch in TOOLS.INI. The CodeView
  679.                       state file restores breakpoints, windows,
  680.                       and other parameters from the last debugging
  681.                       session. See on-line help for further details.
  682.  
  683.  
  684.      Utilities notes:
  685.  
  686.         - The text for the LINK error message L1116 should read as
  687.           follows: "/EXEPACK only valid for OS/2 and real mode
  688.           applications." In other words, you cannot use the
  689.           /EXEPACK option when linking Windows applications.
  690.  
  691.         - If you experience difficulties using NMAKE with memory-
  692.           intensive makefiles under DOS, you can use the alternate
  693.           program NMK.COM. For further information about NMK, type
  694.           NMK /HELP at the operating system prompt.
  695.  
  696.         - LINK, LIB, NMAKE, and BIND have two restrictions
  697.           with regard to support of OS/2 1.2 long file names:
  698.  
  699.             1. Quoted file names can be used only once per argument.
  700.                You can get around this limitation by using a
  701.                response file.
  702.  
  703.             2. If quotes are necessary, the full file name (including
  704.                the path) must be enclosed in quotes.
  705.  
  706.         - You can define NMAKE inference rules that allow for the
  707.           placement of source files in one directory and object files
  708.           in another directory. The following example makefile shows
  709.           how to do this:
  710.  
  711.                # Define 'source' as the directory for .C files and
  712.                # 'obj' for .OBJ files. The caret (^) is required prior
  713.                # to the last backslash (\) to tell NMAKE to use the
  714.                # character literally, not as the line-continuation
  715.                # character.
  716.  
  717.                source = d:\src^\
  718.                obj    = d:\obj^\
  719.  
  720.                # Next, set up an inference rule to compile .C files in
  721.                # the d:\src directory into a .OBJ file and put the
  722.                # .OBJ in the d:\obj directory. Use the compiler option
  723.                # /Fo to give the object the name of the current target
  724.                # ($@).
  725.  
  726.                {$(source)}.c{$(obj)}.obj :
  727.                    $(CC) -c /Fo$@ $<
  728.  
  729.                $(obj)test.obj : $(src)test.c
  730.  
  731.  
  732.      LINK feature added since the documentation was printed:
  733.  
  734.         - The /NOG[ROUPASSOCIATION] option
  735.  
  736.           The /NOG option causes the linker to ignore group
  737.           associations when assigning addresses to data and code
  738.           items. It is provided primarily for compatibility with
  739.           previous versions of the linker (versions 2.02 and earlier)
  740.           and early versions of Microsoft language compilers.
  741.  
  742.           NOTE: This option should be used only with assembly-language
  743.                 programs.
  744.  
  745.  
  746.      Blank Screen While Debugging under OS/2 1.2
  747.      -------------------------------------------
  748.  
  749.      If your screen group goes blank after returning from debugging,
  750.      check to see if the following conditions are true:
  751.  
  752.         - You are running CodeView under OS/2 1.2
  753.         - You are using the two-monitor option (/2)
  754.  
  755.      If all of the above conditions are true, take the following
  756.      steps to determine if you need to upgrade your version of
  757.      OS/2:
  758.  
  759.        1. Type 'syslevel' at an OS/2 command prompt. This identifies
  760.           the version of OS/2 you have installed.
  761.  
  762.           NOTE: Identifying the version alone does not indicate
  763.                 a problem. The conditions above must be present
  764.                 before an upgrade is required.
  765.  
  766.        2. If the syslevel command returns the value 'xr04043' and
  767.           you have experienced the difficulties described above,
  768.           contact your OS/2 distributor for an upgrade.
  769.  
  770.  
  771.      CodeView Extended Memory Option with Video Seven VGA 16
  772.      -------------------------------------------------------
  773.  
  774.      To use the CodeView extended memory option (/X) on a Northgate(TM)
  775.      computer with the Video Seven Vega(TM) 16-bit VGA video adapter,
  776.      you must run the Northgate program NORMAL.COM before starting
  777.      CodeView.
  778.  
  779.      Northgate is a registered trademark of Northgate Computer
  780.      Systems, a division of ABL Corporation. Vega is a trademark of
  781.      Video Seven, Inc.
  782.  
  783.  
  784.  
  785. ============< Part 6: Getting Help on Start-Up Error Messages >==============
  786.  
  787.  
  788.      Sometimes a program in the C 6.0 Professional Development System
  789.      may encounter an error condition on start-up that prevents the
  790.      program from running.
  791.  
  792.      To find out more about the resulting error message, you can use
  793.      the on-line help system. Access on-line help by using the
  794.      stand-alone utility QuickHelp, or by using the Help menu in the
  795.      Programmer's WorkBench (PWB).
  796.  
  797.      To find out about an error message using QuickHelp, at the
  798.      operating system prompt type
  799.  
  800.           QH cxxxx
  801.  
  802.      where <c> is the error's alphabetic prefix and <xxxx> is the
  803.      four-digit error number.
  804.  
  805.      To find out more about how to view errors from within PWB, choose
  806.      "Errors Help" from the Microsoft Advisor Contents screen in PWB.
  807.      (The Microsoft Advisor Contents screen appears when you choose
  808.      "Contents" from the Help menu in PWB.)
  809.  
  810.  
  811.  
  812. ================< Part 7: Notes on "Installing and Using" >=================
  813.  
  814.  
  815.      Getting Help on Files Listed in the Packing List
  816.      ------------------------------------------------
  817.  
  818.      You can use the QuickHelp program to get help on any of the
  819.      executable files listed in the file PACKING.LST. Simply type
  820.      QH followed by the name of executable file. For example, to
  821.      view the on-line help file for NMAKE, type
  822.  
  823.           QH NMAKE.EXE
  824.  
  825.      at the operating-system prompt.
  826.  
  827.  
  828.      Using a Large Number of Help Files
  829.      ----------------------------------
  830.  
  831.      If the help files for OS/2 and several different languages are
  832.      loaded onto your system, you may receive a message that you have
  833.      too many help files open.
  834.  
  835.      You can get around this problem by concatenating some of the help
  836.      files. Most applications that display help allow up to 19 open
  837.      physical help files. However, the number of logical (that is,
  838.      concatenated) help files allowed is usually much larger.
  839.  
  840.      To concatenate help files, use the DOS or OS/2 COPY command with
  841.      the /B (binary) option. For example, to concatenate LINK.HLP and
  842.      UTILS.HLP into a single help file called COMBO.HLP, use the
  843.      following command:
  844.  
  845.           COPY LINK.HLP /B + UTILS.HLP /B COMBO.HLP /B
  846.  
  847.      The order in which you concatenate the files determines the order
  848.      in which the files are searched for help information.
  849.  
  850.      As a final step, be sure to delete the original help files, or
  851.      move them to a directory that is not listed in your HELPFILES
  852.      environment variable.
  853.  
  854.  
  855.      Increasing the Maximum Number of Open Files
  856.      -------------------------------------------
  857.  
  858.      C 6.0 allows you to increase the maximum number of files that may
  859.      be open for I/O (the default number is 20). To use this feature,
  860.      you must be running either OS/2 or DOS version 3.3 or later. Use
  861.      the procedures described in the remainder of this section to
  862.      increase the maximum number of open files.
  863.  
  864.  
  865.      Increasing File Handles
  866.  
  867.      To increase the number of file handles, edit the start-up source
  868.      file CRT0DAT.ASM, which is provided in this release. Change the
  869.      line
  870.  
  871.           _NFILE_ = 20
  872.  
  873.      so that _NFILE_ is set to the desired maximum. For example, to
  874.      increase the maximum number of available file handles to 40,
  875.      change the line as shown here:
  876.  
  877.           _NFILE_ = 40
  878.  
  879.      NOTE: Increasing the number of file handles allows you to use
  880.            low-level I/O functions, such as open and read, with more
  881.            files. However, it does not affect the number of
  882.            stream-level I/O files (that is, the number of FILE *
  883.            streams).
  884.  
  885.  
  886.      Increasing Streams
  887.  
  888.      To increase the number of streams, edit the source file _FILE.C.
  889.      Change the line
  890.  
  891.           #define _NFILE_ 20
  892.  
  893.      to set _NFILE_ to the desired maximum. For example, to allow a
  894.      maximum of 40 streams, change the line as shown here:
  895.  
  896.           #define _NFILE_ 40
  897.  
  898.      Increasing the number of streams allows you to use stream-level
  899.      I/O functions, such as fopen and fread, with more files.
  900.  
  901.      NOTE: The number of low-level file handles must be greater than
  902.            or equal to the number of stream-level files. Thus, if you
  903.            increase the value of _NFILE_ in the module _FILE.C, you
  904.            must also increase the value of _NFILE_ in the module
  905.            CRT0DAT.ASM.
  906.  
  907.  
  908.      Increasing the System Limit
  909.  
  910.      To use more than 20 files at a time, you must increase the file
  911.      limit imposed on your process by the operating system.
  912.  
  913.      To increase the system-wide limit, increase the number of files
  914.      available on your system as a whole by editing your system
  915.      configuration file (CONFIG.SYS). For example, to allow 100 open
  916.      files at a time on your system, put this statement in the
  917.      configuration file:
  918.  
  919.           FILES=120
  920.  
  921.      To increase the process-by-process limit, you must also increase
  922.      the number of files the operating system makes available to your
  923.      particular process. To do this, edit CRT0DAT.ASM and enable the
  924.      commented-out code that is preceded by the appropriate
  925.      description.
  926.  
  927.      In the DOS version of CRT0DAT.ASM, for example, the commented-out
  928.      code appears as shown here:
  929.  
  930.           ;       mov     ah,67h
  931.           ;       mov     bx,_NFILE_
  932.           ;       callos
  933.  
  934.      In the OS/2 version of CRT0DAT.ASM, the code appears as a
  935.      call to DOSSETMAXFH. Under OS/2, you must also enable the
  936.      'extrn DOSSETMAXFH:far' declaration that appears near the
  937.      beginning of the file.
  938.  
  939.      In either case, remove the semicolon (;) comment characters.
  940.  
  941.      NOTE: Under OS/2, you must take into account the fact that each
  942.            process has the potential to "own" open files. When
  943.            planning how many open files to allow on a system-wide
  944.            basis, take this into account.
  945.  
  946.  
  947.      Using the Modified Startup Files
  948.  
  949.      After you modify CRT0DAT.ASM and/or _FILE.C, assemble or compile
  950.      the file(s). The start-up MAKEFILE contains sample command lines
  951.      to perform these jobs. Note that the object files will differ for
  952.      OS/2 and DOS.
  953.  
  954.      To use the new object files, either explicitly link your program
  955.      with the new CRT0DAT.OBJ and _FILE.OBJ file(s), or replace the
  956.      CRT0DAT.OBJ and _FILE.OBJ object(s) in the appropriate model of
  957.      the C run-time library.
  958.  
  959.  
  960.      Multithread (MT) and Dynamic-Link Library (DLL) Libraries
  961.  
  962.      By default, the C 6.0 MT and DLL libraries support 40 file
  963.      handles and streams instead of 20, which is the single thread
  964.      library default.
  965.  
  966.      To increase the number of file handles (low-level I/O), simply
  967.      issue a DOSSETMAXFH call from within your program. This increases
  968.      the open file limit for the calling process.
  969.  
  970.      To increase the allowable number of open streams, first make sure
  971.      that the number of file handles is greater than or equal to the
  972.      number of streams you want. Then rebuild module _FILE.C with the
  973.      desired _NFILE setting (as described under the single thread
  974.      description). Since the MT and DLL libraries are large model, be
  975.      sure to compile _FILE.C with the /AL switch.
  976.  
  977.  
  978.      43-Line Mode with DOS 4.01 ANSI.SYS
  979.      -----------------------------------
  980.  
  981.      You may experience problems trying to switch CodeView or the
  982.      Programmer's WorkBench (PWB) to 43-line mode if you are using DOS
  983.      4.01 and ANSI.SYS.
  984.  
  985.      To use Codeview or PWB in 43-line mode in this situation,
  986.      switch to 43-line mode using the MODE command (MODE CO80,43)
  987.      before you invoke the program.
  988.  
  989.      This problem also affects the graphics functions _settextrows
  990.      and _setvideomoderows. Under DOS 4.01 with ANSI.SYS installed,
  991.      using these functions to set 43-line mode may cause unexpected
  992.      behavior.
  993.  
  994.      At the moment, the only known solution is to remove ANSI.SYS
  995.      from your CONFIG.SYS file and reboot your machine.
  996.  
  997.  
  998.  
  999. ====================< Part 8: Notes on "C Reference" >======================
  1000.  
  1001.  
  1002.      Page    Note
  1003.      ----    ----
  1004.  
  1005.      5       CL (Compiler) /Bx Options
  1006.              -------------------------
  1007.              The complete syntax of the /B1, /B2, and /B3 options is as
  1008.              follows:
  1009.  
  1010.                   /B1 [drive:path]C1L
  1011.                   /B2 [drive:path]C2L
  1012.                   /B3 [drive:path]C3L
  1013.  
  1014.              See on-line help for further information.
  1015.  
  1016.      7       CL (Compiler) /ML Option
  1017.              ------------------------
  1018.              The third sentence should read: "The /ML option is
  1019.              functionally equivalent to /ALw /FPa /G2 /D_MT; however, you
  1020.              must specify /ML rather than the expanded equivalent."
  1021.  
  1022.      8       CL (Compiler) /MT Option
  1023.              ------------------------
  1024.              The second sentence should read: "The /MT option is
  1025.              functionally equivalent to /ALw /FPi /G2 /D_MT; however, you
  1026.              must specify /MT rather than the expanded equivalent."
  1027.  
  1028.      34      NAME Statement
  1029.              --------------
  1030.              The syntax for the NAME statement in a LINK module-definition
  1031.              file is as follows:
  1032.  
  1033.                   NAME [appname] [apptype] [NEWFILES]
  1034.  
  1035.              The optional attribute NEWFILES specifies that the
  1036.              application supports long file names and extended file
  1037.              attributes under OS/2 1.2.
  1038.  
  1039.              The linker also supports LONGNAMES as a synonym for NEWFILES,
  1040.              although LONGNAMES is now considered obsolete.
  1041.  
  1042.      347     The _strtold Function
  1043.              ---------------------
  1044.              The _strtold function is not an ANSI function.
  1045.  
  1046.  
  1047.  
  1048. ==========< Part 9: Notes on "Advanced Programming Techniques" >============
  1049.  
  1050.  
  1051.      C 6.0 and the ANSI C Specification
  1052.      ----------------------------------
  1053.  
  1054.      The on-line help for the __STDC__ macro implies that C 6.0 is
  1055.      fully ANSI C compatible. While C 6.0 has many ANSI-related
  1056.      enhancements, it is not strictly accurate to say that the
  1057.      compiler is fully ANSI compatible.
  1058.  
  1059.      For complete information on Microsoft C 6.0 ANSI compatibility,
  1060.      see Appendix B of "Advanced Programming Techniques."
  1061.  
  1062.  
  1063.      "Advanced Programming Techniques" Notes
  1064.      ---------------------------------------
  1065.  
  1066.      Page    Note
  1067.      ----    ----
  1068.  
  1069.      36      The Tiny Memory Model
  1070.              ---------------------
  1071.              In the third paragraph, the reference to CRTCOM.OBJ should be
  1072.              to CRTCOM.LIB.
  1073.  
  1074.      38      Specifying a Memory Model
  1075.              -------------------------
  1076.              At the bottom of the page, the reference to CRTCOM.OBJ should
  1077.              be to CRTCOM.LIB.
  1078.  
  1079.      99      Preparing for Incremental Linking: The /INCREMENTAL Option
  1080.              ----------------------------------------------------------
  1081.              The first sentence of the second paragraph in this section
  1082.              should read: "The /INCREMENTAL (/INC) option prepares a .EXE
  1083.              file for incremental linking."
  1084.  
  1085.      124     PWB's extmake Syntax
  1086.              --------------------
  1087.              The Programmer's WorkBench extmake switch referred to in this
  1088.              section is now called the build switch. However, the syntax
  1089.              for getting information about fully qualified file names is
  1090.              still valid.
  1091.  
  1092.              For further information, see the help topic "build."
  1093.  
  1094.      348     Calling the OS/2 API
  1095.              --------------------
  1096.              The second paragraph on page 349 should read: "Most OS/2 API
  1097.              functions return 0 if the operation is successful. They
  1098.              return an error code if the operation fails. The exception to
  1099.              this is Presentation Manager APIs, which return 0 if the
  1100.              operation fails. If you are programming under the
  1101.              Presentation Manager, use the WinGetLastError function to
  1102.              determine the nature of an API function call error."
  1103.  
  1104.      352     Family API Functions
  1105.              --------------------
  1106.              The functions VioGetBuf and VioShowBuf should not be
  1107.              included in the list of OS/2 1.1 Family API functions.
  1108.  
  1109.      430     The _fastcall Attribute (/Gr Option)
  1110.              ------------------------------------
  1111.              The list of argument types and their potential register
  1112.              assignments should note that far pointers are passed on
  1113.              the stack.
  1114.  
  1115.      456     Default Date and Time
  1116.              ---------------------
  1117.              References in this section to the predefined date and
  1118.              time macros should be to __DATE__ and __TIME__, rather
  1119.              than _DATE_ and _TIME_.
  1120.  
  1121.  
  1122.  
  1123. =============< Part 10: Patching MOUCALLS.DLL (OS/2 1.1 Only) >==============
  1124.  
  1125.  
  1126.      The dynamic-link library, MOUCALLS.DLL, handles OS/2 API
  1127.      functions that process mouse messages. Some versions of
  1128.      MOUCALLS.DLL shipped with OS/2 1.1 cause a general protection
  1129.      fault when running such applications as the Programmer's
  1130.      WorkBench (PWB). This section describes how to patch MOUCALLS.DLL
  1131.      to correct the error.
  1132.  
  1133.      Identifying the Problem
  1134.      -----------------------
  1135.      When a general protection fault occurs under OS/2, the system
  1136.      displays the location of the fault. If the fault occurs with CS
  1137.      equal to 20F, follow the procedure outlined in the next section
  1138.      to patch MOUCALLS.DLL.
  1139.  
  1140.      Patching MOUCALLS.DLL
  1141.      ---------------------
  1142.      Because OS/2 1.1 with the Presentation Manager uses MOUCALLS.DLL,
  1143.      you cannot directly alter the file. Instead you must modify a copy
  1144.      of the file as shown:
  1145.  
  1146.        1. Create a directory on your boot disk called C:\NEWMOU.
  1147.  
  1148.        2. Copy your C:\CONFIG.SYS file to C:\CONFIG.MOU.
  1149.  
  1150.        3. Edit your C:\CONFIG.SYS file. There is a line in it that
  1151.           begins with LIBPATH. Add the directory C:\NEWMOU as the first
  1152.           directory in the line. So, if the LIBPATH line originally
  1153.           looks like
  1154.  
  1155.                LIBPATH=C:\OS2;C:\LANMAN
  1156.  
  1157.           change it to
  1158.  
  1159.                LIBPATH=C:\NEWMOU;C:\OS2;C:\LANMAN
  1160.  
  1161.        4. Locate the file MOUCALLS.DLL on your hard drive. It is
  1162.           probably in the OS2 directory of your boot drive. If not, it
  1163.           is certainly in one of the directories listed in the LIBPATH
  1164.           line you just edited.
  1165.  
  1166.           Copy MOUCALLS.DLL to the C:\NEWMOU directory.
  1167.  
  1168.        5. Reboot your computer.
  1169.  
  1170.        6. After the system has come back up, change directories to the
  1171.           C:\OS2 directory, or wherever the original MOUCALLS.DLL
  1172.           resides.
  1173.  
  1174.        7. Run the following command:
  1175.  
  1176.                PATCH MOUCALLS.DLL
  1177.  
  1178.           The PATCH program prompts you for the offset location to be
  1179.           patched. Type the following offset:
  1180.  
  1181.                1432
  1182.  
  1183.           Then change the hexadecimal value of the byte at that
  1184.           location from 1A to 1C.
  1185.  
  1186.           Note that there should be a program called PATCH.EXE on your
  1187.           path. It will make the appropriate change to the
  1188.           MOUCALLS.DLL file.
  1189.  
  1190.        8. Copy C:\CONFIG.MOU back over C:\CONFIG.SYS and delete
  1191.           C:\CONFIG.MOU.
  1192.  
  1193.        9. Reboot your computer.
  1194.  
  1195.       10. After the system has come back up, delete the files in
  1196.           C:\NEWMOU and remove the directory.
  1197.  
  1198.  
  1199.  
  1200. ================< Part 11: HIMEM, RAMDRIVE, and SMARTDRV >==================
  1201.  
  1202.  
  1203.      The DOS device driver HIMEM.SYS is provided with the C 6.0
  1204.      Professional Development System for compatibility with CodeView
  1205.      3.0. In addition, new versions of two related drivers,
  1206.      SMARTDRV.SYS and RAMDRIVE.SYS, are provided to go with the updated
  1207.      version of HIMEM.
  1208.  
  1209.      NOTE: This version of HIMEM is not compatible with versions of
  1210.            Microsoft Windows earlier than version 3.0.
  1211.  
  1212.  
  1213.      HIMEM
  1214.      -----
  1215.  
  1216.      Description
  1217.  
  1218.      HIMEM.SYS is an extended memory manager provided so that CodeView
  1219.      can take advantage of all your computer's available memory when
  1220.      running under DOS on an 80286 or 80386 machine with expanded
  1221.      memory.
  1222.  
  1223.  
  1224.      Usage
  1225.  
  1226.      DEVICE=[d:][path]HIMEM.SYS [options]
  1227.  
  1228.      The most common way to use HIMEM.SYS is to include the following
  1229.      line in your CONFIG.SYS file:
  1230.  
  1231.           DEVICE=HIMEM.SYS
  1232.  
  1233.      The following options are also available:
  1234.  
  1235.           /HMAMIN=h
  1236.           /NUMHANDLES=n
  1237.  
  1238.      The /HMAMIN option allows controlled access to high memory by
  1239.      specifying (in <h>) the minimum amount of memory a terminate-and-
  1240.      stay-resident (TSR) program can use in high memory.
  1241.  
  1242.      The /NUMHANDLES option sets (in <n>) the maximum number of
  1243.      extended memory block handles that can be used at any given time.
  1244.  
  1245.  
  1246.      RAMDRIVE
  1247.      --------
  1248.  
  1249.      Description
  1250.  
  1251.      RAMDRIVE.SYS is an installable device driver that lets you use a
  1252.      portion of your computer's memory as if it were a hard disk.
  1253.  
  1254.  
  1255.      Usage
  1256.  
  1257.      DEVICE=[d:][path]RAMDRIVE.SYS [disksize][sectorsize][entries][memtype]
  1258.  
  1259.      <disksize> specifies the disk size in kilobytes (K). The default
  1260.      is 64K, and the minimum is 16K.
  1261.  
  1262.      <sectorsize> specifies the sector size in bytes. The default size
  1263.      is 512 bytes. The following values are allowed: 128, 256, 512, and
  1264.      1024.
  1265.  
  1266.      <entries> specifies the number of entries allowed in the root
  1267.      directory. The default value is 64; the minimum, 4; the maximum,
  1268.      1024.
  1269.  
  1270.      <memtype> specifies what kind of memory you want RAMDRIVE to use.
  1271.      The following options are available:
  1272.  
  1273.         - The /e option lets you use any installed memory above one
  1274.           megabyte as a RAM disk. This option cannot be used with the
  1275.           /a option.
  1276.  
  1277.         - The /a option lets you use memory on an expanded memory
  1278.           board that is compatible with the Lotus/Intel/Microsoft
  1279.           Expanded Memory specification. This option cannot be used
  1280.           with the /e option.
  1281.  
  1282.         - If you omit the <memtype> option altogether, RAMDRIVE
  1283.           attempts to set up a virtual drive in conventional memory.
  1284.  
  1285.  
  1286.      SMARTDRV
  1287.      --------
  1288.  
  1289.      Description
  1290.  
  1291.      SMARTDRV.SYS is a disk-caching program for computers that have a
  1292.      hard disk and extended or expanded memory. For SMARTDRV to operate
  1293.      correctly, the current version of HIMEM must be installed.
  1294.  
  1295.  
  1296.      Usage
  1297.  
  1298.      DEVICE=[d:][path]SMARTDRV.SYS [size][/a]
  1299.  
  1300.      <size> is the amount of memory you want SMARTDRV to have. The
  1301.      default is 256K of extended memory or all of expanded memory.
  1302.  
  1303.      The /a switch is used when you have expanded memory or an
  1304.      expanded memory emulator. If you omit this switch, SMARTDRV uses
  1305.      extended memory.
  1306.