SketchUp SDK
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
color.h
Go to the documentation of this file.
1 // Copyright 2013 Trimble Navigation Ltd., All rights reserved.
2 
3 #ifndef SLAPI_COLOR_H_
4 #define SLAPI_COLOR_H_
5 
6 #pragma pack(push, 8)
7 #ifdef __cplusplus
8 extern "C" {
9 #endif // __cplusplus
10 
15 typedef unsigned char SUByte;
16 
21 typedef struct {
22  SUByte red;
23  SUByte green;
24  SUByte blue;
25  SUByte alpha;
26 } SUColor;
27 
28 #ifdef __cplusplus
29 } // end extern "C"
30 #endif // __cplusplus
31 #pragma pack(pop)
32 
33 #endif // SLAPI_COLOR_H_