#ifdef E_TYPEDEFS typedef struct _E_Color E_Color; typedef enum E_Color_Component { E_COLOR_COMPONENT_R, E_COLOR_COMPONENT_G, E_COLOR_COMPONENT_B, E_COLOR_COMPONENT_H, E_COLOR_COMPONENT_S, E_COLOR_COMPONENT_V, E_COLOR_COMPONENT_MAX } E_Color_Component; #else #ifndef E_COLOR_HEADER #define E_COLOR_HEADER /* used so that a single color struct can be shared by all elements of the color dialog */ struct _E_Color { int r, g, b; float h, s, v; int a; }; E_API void e_color_update_rgb (E_Color *ec); E_API void e_color_update_hsv (E_Color *ec); E_API void e_color_copy (const E_Color *from, E_Color *to); #endif #endif