home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / compiler / sample03 / readme.txt < prev    next >
Encoding:
Text File  |  1996-02-20  |  2.0 KB  |  59 lines

  1.  **********************************************************************
  2.  * DISCLAIMER OF WARRANTIES:                                          *
  3.  *                                                                    *
  4.  * The following enclosed code is sample code created by IBM          *
  5.  * Corporation.  This sample code is not part of any standard IBM     *
  6.  * product and is provided to you solely for the purpose of assisting *
  7.  * you in the development of your applications.  The code is provided *
  8.  * "AS IS", without warranty of any kind.  IBM shall not be liable    *
  9.  * for any damages arising out of your use of the sample code, even   *
  10.  * if they have been advised of the possibility of such damages       *
  11.  *                                                                    *
  12.  **********************************************************************
  13.  
  14.  NAME: SAMPLE - Three Sort DLL
  15.  
  16.  DESCRIPTION:
  17.      Implements three different sorting functions: bubble sort,
  18.      selection sort, and insertion sort.
  19.  
  20.      These functions keep track of the number of swap and compare
  21.      operations required to do the sorting.
  22.  
  23.  TASK:
  24.      Building and using a DLL.
  25.  
  26.  FEATURE/CONCEPT:
  27.  
  28.      o   Example of a _DLL_InitTerm function.
  29.      o   Exporting functions and variables
  30.  
  31.  
  32.  HOW TO RUN THE SAMPLE FROM THE COMMAND LINE:
  33.         Simple type the name of the .EXE file, that is:
  34.  
  35.             MAIN03
  36.  
  37.  
  38.  HOW TO BUILD THE SAMPLE FROM THE COMMAND LINE:
  39.  
  40.         - to build the DLL first:
  41.           In the sample03\sort directory
  42.  
  43.             nmake
  44.  
  45.         - to build the main program:
  46.           In the sample03 directory
  47.             nmake
  48.  
  49.  
  50.   ADDITIONAL INFORMATION
  51.   For additional information on this and other samples shipped
  52.   with the VisualAge for C++ product, please see the Guide to Samples
  53.   notebook.
  54.  
  55.   To access the notebook from Program Manager, open the
  56.   VisualAge for C++ product object, then open the Guide to Samples
  57.   notebook.
  58.  
  59.