home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 14 Text / 14-Text.zip / proscons.zip / glossary.txt < prev    next >
Text File  |  1995-11-29  |  6KB  |  117 lines

  1.  
  2.    The (highly unofficial) FIDONET OS2PROG C++ compiler pros and cons list
  3.    ───────────────────────────────────────────────────────────────────────
  4.  
  5.                                 GLOSSARY
  6.                                 ────────
  7.  
  8.  
  9.   What is the OS/2 Developers' Toolkit ?
  10.  
  11.     Available separately (IBM part number 61G1416) although bundled with
  12.     all of the commercial C++ compilers, this comprises the header files,
  13.     link libraries, sample source, API reference, and PM utilities for
  14.     OS/2 development.  The version 1.3 Toolkit necessary for VIO, KBD, and
  15.     MOU on-line help and the version 3.0 Toolkit with the (few) new
  16.     WARP-specific APIs are available on the Developer Connection CD-ROMs.
  17.  
  18.  
  19.   What is the OS/2 Developers' Assistance Programme ?
  20.  
  21.     The DAP is a service from IBM for developers that provides BBS
  22.     technical support, marketing and product information.  You need to
  23.     prove that you are developing an OS/2 application.
  24.  
  25.  
  26.   What is the OS/2 Developers' Connection ?
  27.  
  28.     A common fallacy is that this is part of the DAP.  Although DAP
  29.     membership gives cheaper subscription rates to DevCon, this only
  30.     applies to the U.S. DAP, and not to DAP in any other countries.
  31.  
  32.     The DevCon is a yearly subscription that gives you four issues of the
  33.     DevCon CD-ROMs and access to a private area of the OS2DF2 forum on
  34.     CompuServe, allowing you to talk directly to IBM developers.
  35.  
  36.     The CD-ROMs contain a wealth of source code, tools, development
  37.     utilities, and documentation for OS/2 programmers.  The current DevCon
  38.     CD-ROMs comprise "base" CD-ROMs and the Developer Connection for LAN
  39.     Systems CD-ROMs. At extra cost you can take out a DevCon subscription
  40.     that includes the Developer Connection Device Driver Kit CD-ROM as
  41.     well.
  42.  
  43.     Various pre-release tools released by developers on the ISV program
  44.     are also distributed on the DevCon CD-ROMs, such as the MetaWare High
  45.     C++ cross-compiler for PowerPC OS/2 and the Prominaire Universal
  46.     Resource Editor.  All of the OS/2 Developers' Toolkits from 1.3 to 3.0
  47.     are also included, as are toolkits for customising the EPM Editor.  At
  48.     various times service packs and debug kernels are also distributed on
  49.     the DevCon CD-ROMs.
  50.  
  51.     The optional DevCon DKK CD-ROM is necessary for those developers
  52.     producing device drivers.  Support for DEVICE and BASEDEV drivers, and
  53.     Presentation Manager video drivers is supplied.  Also supplied is real
  54.     source code for many of the standard drivers shipped with OS/2 such as
  55.     OS2DASD.DMD, IBM1S506.ADD, COM.SYS, and VCOM.SYS.  Tools and libraries
  56.     necessary for device driver development are also supplied.  Although
  57.     no C++ compiler is supplied, with the addition of the 1.3 Toolkit from
  58.     the DevCon base CD-ROMs and a pack from Watcom's FIDONET site you can
  59.     write device drivers in Watcom C++ 10.0b.
  60.  
  61.     Part numbers for the various volumes (this may now be out of date):
  62.  
  63.       83G9755 DevCon (base), vol. 5, Disk 1 of 2 ("Warp Special Edition")
  64.       83G9647 DevCon (base), vol. 5, Disk 1 of 1 (superseded by the above)
  65.       83G9648 DevCon (base), vol. 5, Disk 2 of 2
  66.       83G9655 DevCon for LAN Systems, vol. 1, Disk 1 of 1
  67.       83G9747 DevCon Device Driver Kit, vol. 1, Disk 1 of 1
  68.       83G9659 DevCon Software Shopper, vol. 1, Disk 1 of 1
  69.  
  70.       06H2024 DevCon (base), vol. 4, Disk 1 of 2
  71.       06H2025 DevCon (base), vol. 4, Disk 2 of 2
  72.       06H1971 DevCon (base), vol. 3, Disk 1 of 2
  73.       06H1972 DevCon (base), vol. 3, Disk 2 of 2
  74.       82G4701 DevCon (base), vol. 2, Disk 1 of 1
  75.       71G5385 DevCon (base), vol. 1, Disk 1 of 1
  76.  
  77.  
  78.   What is Workframe ?
  79.  
  80.     Again available separately, this is a compiler independent development
  81.     environment.  Workframe is a means of managing projects, and uses
  82.     compiler-supplied DLLs to handle things like generating makefiles, and
  83.     displaying options settings notebooks for the compiler, linker, and
  84.     resource tools.  It integrates with EPM (or other editors) to allow
  85.     you to edit source files at the point of error.  I've had two
  86.     projects, one IBM CSet++ and one MetaWare High C++, both being built
  87.     *simultaneously* in Workframe.
  88.  
  89.  
  90.   What are the System Object Model (SOM), Distributed SOM (DSOM), and
  91.   DirectToSOM C++ ?
  92.  
  93.     SOM is a language-independent run-time environment for class and
  94.     object support.  Distributed SOM allows programs to share SOM classes
  95.     and objects amongst themselves and across networks.  DirectToSOM C++
  96.     compilers allow SOM classes to be defined and used using standard C++
  97.     class syntax.
  98.  
  99.     See the SOMObjects Travel Guide and the DirectToSOM Intro included in
  100.     the Pros and Cons Archive for more details.
  101.  
  102.  
  103.   What is the SOMObjects Developers' Toolkit ?
  104.  
  105.     The OS/2 Developers' Toolkit 2.1 only supports SOM version 1.x.  SOM
  106.     2.x requires a different toolset, works differently, and uses IDL.
  107.     The SOMObjects Developers' Toolkit 2.1 contains a a SOM 2.1 compiler,
  108.     IDL files, and documentation.  It is available separately, with IBM
  109.     part number 59G5667 (check the version number when ordering).
  110.  
  111.     See the SOMObjects Travel Guide included in the Pros and Cons archive
  112.     for more details.
  113.  
  114.  
  115.    » JdeBP «             » (c) Copyright 1994-1995 All Rights Reserved. «
  116.    » JdeBP@donor2.demon.co.uk                         FIDONET 2:440/4.0 «
  117.