~aurelien-riv/+junk/livewallpaper

« back to all changes in this revision

Viewing changes to include/livewallpaper/color.h

  • Committer: Aurélien RIVIÈRE
  • Date: 2012-11-06 23:23:17 UTC
  • Revision ID: aurelien.riv@gmail.com-20121106232317-ny5aed57qnl6chl4
Some C types replaced with Glib types

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
gboolean lw_color_get_color_mapping(GValue *value, GVariant *variant, gpointer p);
26
26
GVariant *lw_color_set_color_mapping(const GValue *value, const GVariantType *type, gpointer p);
27
27
 
28
 
void lw_rgb_to_hsl(float *red, float *green, float *blue);
29
 
void lw_hsl_to_rgb(float *hue, float *saturation, float *lightness);
 
28
void lw_rgb_to_hsl(gfloat *red, gfloat *green, gfloat *blue);
 
29
void lw_hsl_to_rgb(gfloat *hue, gfloat *saturation, gfloat *lightness);
30
30
 
31
31
#endif /* _LW_COLOR_H_ */
32
32