home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR9 / WIZTOO.ZIP / CODEGEN.H < prev    next >
C/C++ Source or Header  |  1993-09-20  |  1KB  |  37 lines

  1. #ifndef    _codegen_h_
  2. #define    _codegen_h_
  3.  
  4. //    Module:    CODEGEN.H
  5.  
  6. //                                                   September 20, 1993
  7. //                                                   Fairfield, Iowa
  8.  
  9. //          Aerosoft  (R)  Broadcast Channel Wizard   Version 1.0
  10. //          Copyright (c)  Aerosoft 1993     All rights reserved.
  11.  
  12. //          This software source code is FREEWARE.  You may be use the
  13. //          source code or redistribute the source code free of charge.
  14. //          However, you cannot sell this source code or any alteration of
  15. //          the source code.
  16.  
  17. //  This module defines the files generated and the functions that create them.
  18. //  See module CODEGEN.CPP for more details.
  19.  
  20. #include    "CHNLSPEC.H"
  21.  
  22. // Files created by CODEGEN functions:
  23. #define    CHNNLDEF_H_FILE        "CHNNLDEF.H"
  24. #define BRDCASTR_CPP_FILE    "BRDCASTR.CPP"
  25. #define BRDCASTR_H_FILE        "BRDCASTR.H"
  26. #define    APP_CPP_FILE        "APP.CPP"
  27.  
  28. // Filename used for reference:
  29. #define    CHANNEL_H_FILE        "CHANNEL.H"
  30.  
  31. void GenCHNNLDEF_H(ChannelSpecs &oChannelSpecs);
  32. void GenBRDCASTR_CPP(ChannelSpecs &oChannelSpecs);
  33. void GenBRDCASTR_H(ChannelSpecs &oChannelSpecs);
  34. void GenAPP_CPP(ChannelSpecs &oChannelSpecs);
  35.  
  36. #endif
  37.