home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / STK100.ZIP / STKSRC.COM / GRTYPES.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-10-20  |  954 b   |  32 lines

  1. /**********************************************************************
  2. * grtypes.h
  3. *
  4. * Common type definitions for the graphics and sprite routines
  5. **********************************************************************
  6.                     This file is part of
  7.  
  8.           STK -- The sprite toolkit -- version 1.0
  9.  
  10.               Copyright (C) Jari Karjala 1990
  11.  
  12. The sprite toolkit (STK) is a FreeWare toolkit for creating high
  13. resolution sprite graphics with PCompatible hardware. This toolkit 
  14. is provided as is without any warranty or such thing. See the file
  15. COPYING for further information.
  16.  
  17. **********************************************************************
  18. **********************************************************************/
  19.  
  20. #if     !defined(__GRTYPES_H_)
  21. #define __GRTYPES_H_
  22.  
  23. #ifndef NULL
  24. #define NULL ((void*)0)
  25. #endif
  26.  
  27. typedef unsigned char BYTE;
  28. typedef unsigned int  WORD;
  29. typedef BYTE *BITMAP;
  30.  
  31. #endif
  32.