home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / t / tcu_32.zip / TCU_32.ZIP / README.1ST < prev    next >
Text File  |  1991-03-26  |  2KB  |  70 lines

  1.  
  2. ============================================================================
  3.                        NOTES TO TCU 3.2 DELIVERY
  4. ============================================================================
  5.  
  6.  
  7.  
  8. Naming Convention
  9. -----------------
  10.  
  11. In order to provide a safer naming convention, all services now
  12. have the prefix 'tcu_'.  For example, 'load_form' is now called
  13. 'tcu_load_form'.  Furthermore, all upper-case constants and types
  14. defined in TCU.H are prefixed with 'TCU_', e.g. TCU_MENU. By
  15. defining the symbol '__TCUPRE32__' the old naming conventions may
  16. still be used though this will be discontinued at some future stage.
  17. All new code should use the 'tcu_' & 'TCU_' prefixes, and existing
  18. code should, in time, be modified to conform to the new names. The
  19. definition of the symbol __TCUPRE32__ may be done either in the
  20. integrated environment, with the command line compiler option
  21. -D__TCUPRE32__ or by explicitly defining it in the code as:
  22.  
  23.    #define __TCUPRE32__
  24.    #include <usr\tcu.h>
  25.  
  26. Note that the new services added with version 3.2 have no old
  27. style naming convention.  'tcu_write_formrec' may not be specified
  28. as 'write_formrec'.
  29.  
  30.  
  31.  
  32. Installation Program
  33. --------------------
  34.  
  35. Version 3.2 comes complete with an installation procedure to make
  36. installation of the system simpler.  The installation does nothing
  37. other than to copy files and merge libraries if requested.  There
  38. are no nasty surprises!  The installation program source code is
  39. supplied as an additional demonstration.
  40.  
  41. In order to install the system, unpack the COMPLETE distribution
  42. file, TCU_32.ZIP, into a temporary directory, move into this
  43. directory and type 'tcuinst'.  After installation the complete
  44. directory may be deleted as any files required will have been
  45. copied to the final destinations.  An example installation session
  46. is shown below:
  47.  
  48. C:\> md tcu_tmp
  49. C:\> cd tcu_tmp
  50. C:\TCU_TMP> pkunzip a:tcu_32
  51.  
  52.     :         :        :
  53.     :         :        :
  54.  
  55. C:\TCU_TMP> tcuinst
  56. C:\TCU_TMP> del *.*
  57. Are you sure? y
  58.  
  59. C:\TCU_TMP> cd ..
  60. C:\> rd tcu_tmp
  61. C:\>
  62.  
  63. The system will now have been installed (provided you completed the
  64. procedure within TCUINST).
  65.  
  66. Please be sure to read AA-READ.ME! and TCU.DOC for full information
  67. on changes since the last version and a reference guide to this
  68. version.
  69.  
  70. ============================================================================