home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / SAMPLES / ICLUI / MLE / README.TXT < prev   
Text File  |  1993-09-27  |  6KB  |  76 lines

  1. ***************************************************************************
  2. * MLE SAMPLE PROGRAM: Readme File (README.TXT)                            *
  3. *                                                                         *
  4. * COPYRIGHT: Copyright(C) International Business Machines Corp.,1992,1993.*
  5. *                                                                         *
  6. * DISCLAIMER OF WARRANTIES:                                               *
  7. *   The following [enclosed] code is sample code created by IBM           *
  8. *   Corporation.  This sample code is not part of any standard IBM product*
  9. *   and is provided to you solely for the purpose of assisting you in the *
  10. *   development of your applications.  The code is provided "AS IS",      *
  11. *   without warranty of any kind.  IBM shall not be liable for any damages*
  12. *   arising out of your use of the sample code, even if they have been    *
  13. *   advised of the possibility of such damages.                           *
  14. *-------------------------------------------------------------------------*
  15. * Key Functions:                                                          *
  16. *    - Creates Frame Window with MLE as Client                            *
  17. *    - Menu bar items to open and save files                              *
  18. *    - Menu bar items to cut, copy and paste                              *
  19. *    - Menu bar items to change font                                      *
  20. *                                                                         *
  21. * See the User Interface Class Library Users Guide for more information   *
  22. *   about this sample program.                                            *
  23. ***************************************************************************
  24.  
  25. ***************************************************************************
  26. * File list:                                                              *
  27. *   README.TXT   - Readme file for MLE.EXE.                               *
  28. *   AMLE.CPP     - C++ Source code for MLE.EXE                            *
  29. *   AMLE.HPP     - C++ Header file for MLE.EXE                            *
  30. *   AUWMHDR.CPP  - C++ Source code for User Message Handler               *
  31. *   AUWMHDR.CPP  - C++ Header file code for User Message Handler          *
  32. *   AMLE.H       - C Header file for MLE.EXE                              *
  33. *   AMLE.RC      - Resource file for MLE.EXE                              *
  34. *   AMLE.DEF     - Module definition file for MLE.EXE.                    *
  35. *   AMLE.MAK     - Make file to create MLE.EXE.                           *
  36. *   AMAKE.CMD    - Command file to create MLE.EXE.                        *
  37. *   CLEANUP.CMD  - Command file to clean up (erase) the following         *
  38. *                   generated files:  MLE.EXE, AMLE.OBJ, AMLE.MAP         *
  39. *                   AMLE.RES, AUWMHDR.OBJ and AMLE.ERR.                   *
  40. ***************************************************************************
  41.  
  42. ***************************************************************************
  43. * File Relationship Diagram (Files in uppercase, Programs in lowercase)   *
  44. *                                                                         *
  45. *                   AMLE.H                                                *
  46. *                    │  │                                                 *
  47. *    AMLE.HPP        │  │                                                 *
  48. *     AUWMHDR.HPP    │  │                                                 *
  49. *      │             │  │                                                 *
  50. *      v             │  │                                                 *
  51. *    AMLE.CPP  <─────┘  └────────────>   AMLE.RC                          *
  52. *     AUWMHDR.CPP                          │                              *
  53. *      │                                  rc -r                           *
  54. *      │                                   │                              *
  55. *      v                                 AMLE.RES                         *
  56. *    icc -c ────>   AMLE.OBJ               │                              *
  57. *                    AUWMHDR.OBJ           │                              *
  58. *                     │                    │                              *
  59. *                     v                    │                              *
  60. *     AMLE.DEF-> icc /Tdp -> AMLE.MAP      │                              *
  61. *                     │                    │                              *
  62. *                     v                    v                              *
  63. *                   MLE.EXE  ──────────>  rc ───────────> MLE.EXE         *
  64. ***************************************************************************
  65.  
  66. ***************************************************************************
  67. * To build, run and cleanup MLE.EXE:                                      *
  68. *                                                                         *
  69. *           Run AMAKE.CMD                                                 *
  70. *           Run MLE.EXE                                                   *
  71. *           Run CLEANUP.CMD                                               *
  72. *                                                                         *
  73. *   AMAKE.CMD compiles and links MLE.EXE.                                 *
  74. *   CLEANUP.CMD cleans up the files built by AMAKE.CMD.                   *
  75. ***************************************************************************
  76.