kaos/KaosSrc/std.hpp
2024-10-12 20:32:30 -05:00

24 lines
No EOL
807 B
C++

/************************************************************************
* This program 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 2 of the License, or *
* (at your option) any later version. *
************************************************************************/
// Standard Include file for NicosoŸt'97 programs.
#ifndef __NICSTD97__
#define __NICSTD97__
#ifndef NULL
#define NULL 0
#endif
#define byte unsigned char
#define word unsigned
extern const char NicMark[];
extern const unsigned long SerialNo;
extern void error(const char *err_fnc,const char *err_on);
extern char ShutDown;
#endif