1 #ifndef CLIB_COLORWHEEL_PROTOS_H 2 #define CLIB_COLORWHEEL_PROTOS_H 3 4 /* 5 colorwheel.gadget C prototypes 6 7 Copyright © 2002 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 #ifndef EXEC_TYPES_H 11 # include <exec/types.h> 12 #endif 13 14 #ifndef GADGETS_COLORWHEEL_H 15 # include <gadgets/colorwheel.h> 16 #endif 17 18 19 #ifdef __cplusplus 20 extern "C" { 21 #endif /* __cplusplus */ 22 23 VOID ConvertHSBToRGB( struct ColorWheelHSB *hsb, struct ColorWheelRGB *rgb ); 24 VOID ConvertRGBToHSB( struct ColorWheelRGB *rgb, struct ColorWheelHSB *hsb ); 25 26 #ifdef __cplusplus 27 } 28 #endif /* __cplusplus */ 29 30 31 #endif /* CLIB_COLORWHEEL_PROTOS_H */