home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 956 b | 42 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: SLPat.h
- // Release Version: $ ODF 2 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef SLPAT_H
- #define SLPAT_H
-
- #ifndef SLGRDEF_H
- #include "SLGrDef.h"
- #endif
-
- //========================================================================================
- // Types
- //========================================================================================
-
- union FW_BitPattern
- {
- unsigned char fData[8];
- unsigned long fDataLongs[2];
- };
-
- union FW_PixelPattern
- {
- unsigned char fData[8][8];
- unsigned char fDataRaw[8 * 8];
- unsigned long fDataLongs[8][2];
- };
-
- #ifdef FW_BUILD_MAC
- typedef PixPatHandle FW_PlatformColorPattern;
- #endif
- #ifdef FW_BUILD_WIN
- typedef FW_WinDIB FW_PlatformColorPattern;
- #endif
-
- #endif // SLPAT_H
-