49 lines
1.8 KiB
C
Executable File
49 lines
1.8 KiB
C
Executable File
/******************************************************************************
|
|
* Product: # # # # # ### ######
|
|
* # # # # # # # #
|
|
* # # # # # # # #
|
|
* # # # # # ######
|
|
* # # # # # # # #
|
|
* # # # # # # # #
|
|
* ##### # # ####### ####### ### ######
|
|
*
|
|
* File: ux.h
|
|
* Description: Header file for declaration of structures, datatypes etc.
|
|
* Version: %I%
|
|
* Dated: %D%
|
|
* Copyright: P.D. Smart 1994-2019.
|
|
*
|
|
* History: 1.0 - Initial Release.
|
|
*
|
|
******************************************************************************
|
|
* This source file is free software: you can redistribute it and#or modify
|
|
* it under the terms of the GNU General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This source file is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
******************************************************************************/
|
|
|
|
/* Ensure file is only included once - avoid compile loops.
|
|
*/
|
|
#ifndef UX_H
|
|
#define UX_H
|
|
|
|
#include "ux_dtype.h"
|
|
#include "ux_comon.h"
|
|
#include "ux_comms.h"
|
|
#include "ux_cmprs.h"
|
|
#include "ux_mon.h"
|
|
|
|
/* Version Control.
|
|
*/
|
|
#define PROGRAM_VERSION "%I%"
|
|
|
|
#endif /* UX_H */
|