home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
High Voltage Shareware
/
high1.zip
/
high1
/
DIR9
/
WIZTOO.ZIP
/
CODEGEN.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-09-20
|
1KB
|
37 lines
#ifndef _codegen_h_
#define _codegen_h_
// Module: CODEGEN.H
// September 20, 1993
// Fairfield, Iowa
// Aerosoft (R) Broadcast Channel Wizard Version 1.0
// Copyright (c) Aerosoft 1993 All rights reserved.
// This software source code is FREEWARE. You may be use the
// source code or redistribute the source code free of charge.
// However, you cannot sell this source code or any alteration of
// the source code.
// This module defines the files generated and the functions that create them.
// See module CODEGEN.CPP for more details.
#include "CHNLSPEC.H"
// Files created by CODEGEN functions:
#define CHNNLDEF_H_FILE "CHNNLDEF.H"
#define BRDCASTR_CPP_FILE "BRDCASTR.CPP"
#define BRDCASTR_H_FILE "BRDCASTR.H"
#define APP_CPP_FILE "APP.CPP"
// Filename used for reference:
#define CHANNEL_H_FILE "CHANNEL.H"
void GenCHNNLDEF_H(ChannelSpecs &oChannelSpecs);
void GenBRDCASTR_CPP(ChannelSpecs &oChannelSpecs);
void GenBRDCASTR_H(ChannelSpecs &oChannelSpecs);
void GenAPP_CPP(ChannelSpecs &oChannelSpecs);
#endif