home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************
- * grtypes.h
- *
- * Common type definitions for the graphics and sprite routines
- **********************************************************************
- This file is part of
-
- STK -- The sprite toolkit -- version 1.0
-
- Copyright (C) Jari Karjala 1990
-
- The sprite toolkit (STK) is a FreeWare toolkit for creating high
- resolution sprite graphics with PCompatible hardware. This toolkit
- is provided as is without any warranty or such thing. See the file
- COPYING for further information.
-
- **********************************************************************
- **********************************************************************/
-
- #if !defined(__GRTYPES_H_)
- #define __GRTYPES_H_
-
- #ifndef NULL
- #define NULL ((void*)0)
- #endif
-
- typedef unsigned char BYTE;
- typedef unsigned int WORD;
- typedef BYTE *BITMAP;
-
- #endif
-