home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / angcon / readme.txt < prev   
Encoding:
Text File  |  1994-05-09  |  1.7 KB  |  64 lines

  1. Welcome to Au Software's ANGCONV Workaround Program.
  2.  
  3. The conversion program supplied by Borland to convert from OWL 1.0 to OWL2.0
  4. made some assumptions and one of them is solved by this workaround.
  5.  
  6. Before you do anything else, make sure you have backed up your original 
  7. source files before you run this program.  
  8.  
  9. If you have #include directives in your source files, this program will 
  10. automatically convert all <> directives  to "" for those files local to your 
  11. current directory.
  12.  
  13. Thus the following code sequence:
  14.  
  15. #include <stdio.h>
  16. #include <myheader.h>
  17.  
  18. would become:
  19.  
  20. #include <stdio.h>
  21. #include "myheader.h"
  22.  
  23.  
  24. IF you use OWLCVT, OWLCVT will only convert headers that are referenced with
  25. the "" and not the angle brackets <>.
  26.  
  27. To use the program:
  28.         1)      Backup all of your source files
  29.         2)      Run the program with the appropriate wild cards
  30.                 You could do something like this:  'ANGCONV *.h'
  31.         3)      Confirm the changes by doing (for each file)
  32.                 FC FILE1.EXT #AUBACK\FILE1.EXT
  33.  
  34.                 (where file1.ext is the name of the file you processed.  
  35.                 The program automatically preserves the originals in the 
  36.                 directory #auback (below your current directory).)
  37.  
  38.  
  39.  
  40.  
  41.  
  42. This is version 1.01.  Thank you for examining this product.  
  43. We hope it will serve your current and future programming needs.
  44.  
  45.  
  46.         If you wish to order use the file ORDER.TXT
  47.  
  48.  
  49.  
  50.  
  51.         Please show your support by sending $5 to
  52.  
  53.                 David Stockwell
  54.                 Au Software
  55.                 142 W. Cliffwood Ave,
  56.                 Anaheim, CA  92802-4815
  57.  
  58.  
  59.  
  60.         Thank you.
  61.  
  62.  
  63.  
  64.