00001 /****************************************************************************** 00002 ** Filename: General.h 00003 ** Purpose: this is the system independent typedefs and defines 00004 ** Author: Mike Niquette / Dan Johnson 00005 ** History: Creation Date: 09/13/1988, MLN 00006 ** Added UNIX: 11/10/88, DSJ 00007 ** Changed name to General.h 11/24/88, DSJ 00008 ** Added BOOL, CHAR, TRUE, FALSE, 11/24/88, DSJ 00009 ** STATUS 00010 ** 00011 ** (c) Copyright Hewlett-Packard Company, 1988. 00012 ** Licensed under the Apache License, Version 2.0 (the "License"); 00013 ** you may not use this file except in compliance with the License. 00014 ** You may obtain a copy of the License at 00015 ** http://www.apache.org/licenses/LICENSE-2.0 00016 ** Unless required by applicable law or agreed to in writing, software 00017 ** distributed under the License is distributed on an "AS IS" BASIS, 00018 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00019 ** See the License for the specific language governing permissions and 00020 ** limitations under the License. 00021 ******************************************************************************/ 00022 #ifndef GENERAL_H 00023 #define GENERAL_H 00024 00025 #include "host.h" 00026 00027 typedef char CHAR; 00028 typedef int STATUS; 00029 00030 #ifndef NULL 00031 #define NULL 0 00032 #endif 00033 #endif