home *** CD-ROM | disk | FTP | other *** search
- /* NAME:
- ColourBlock.h
-
- WRITTEN BY:
- Dair Grant
- dair@kagi.com
-
- DESCRIPTION:
- Header file for ColourBlock.c.
-
- ___________________________________________________________________________
- */
- #ifndef __COLOURBLOCK__
- #define __COLOURBLOCK__
- //=============================================================================
- // Defines
- //-----------------------------------------------------------------------------
- #ifndef PackRGB
- #define PackRGB(col, r, g, b) col.red=r; col.green=g; col.blue=b
- #endif
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- //=============================================================================
- // Structures
- //-----------------------------------------------------------------------------
- #pragma once
- typedef struct {
- RGBColor blockColour;
- } CDEFStruct, *CDEFStructPtr, **CDEFStructHnd;
-
-
- #endif
-