Re: [Gimp-developer] CMS PDBs in CinePaint/GIMP

2004-08-15 Thread Kai-Uwe Behrmann
Hello, Here comes what I have put in CinePaints standard plugin header : void gimp_image_set_icc_profile_by_name (gint32 image_ID, gchar *data); void gimp_image_set_icc_profile_by_mem (gint32 image_ID,

Re: [Gimp-developer] CMS PDBs in CinePaint/GIMP

2004-08-15 Thread Alastair M. Robinson
Hi Sven, Sven Neumann wrote: Kai-Uwe Behrmann [EMAIL PROTECTED] writes: void gimp_image_set_lab_profile (gint32 image_ID); void gimp_image_set_xyz_profile (gint32 image_ID); void gimp_image_set_srgb_profile(gint32 image_ID); What are these? Setters

Re: [Gimp-developer] CMS PDBs in CinePaint/GIMP

2004-08-14 Thread Kai-Uwe Behrmann
Hi, Are You interessted into sharing the same PDB function names from what is allready gone into CinePaint? This kind of integration would help writers of future plug-ins to port to and from GIMP. Please let me know and I will go and post the related things here. You can then decide by as You

Re: [Gimp-developer] CMS PDBs in CinePaint/GIMP

2004-08-14 Thread Sven Neumann
Hi, Kai-Uwe Behrmann [EMAIL PROTECTED] writes: Are You interessted into sharing the same PDB function names from what is allready gone into CinePaint? You aren't still using or even still adding PDB names that use the GIMP namespace to CinePaint or are you? Sven

Re: [Gimp-developer] CMS PDBs in CinePaint/GIMP

2004-08-14 Thread Kai-Uwe Behrmann
As long as there is somthing simple possible like: #define cinepaint_func gimp-func #namespace_GIMP gimp_func (whatever_You_like, arguments); #endif #namespace_CinePaint cinepaint_func (whatever_You_like, arguments); #endif possible, I think all is fine. But starting of something like: /*

Re: [Gimp-developer] CMS PDBs in CinePaint/GIMP

2004-08-14 Thread Sven Neumann
Hi, Kai-Uwe Behrmann [EMAIL PROTECTED] writes: As long as there is somthing simple possible like: #define cinepaint_func gimp-func #namespace_GIMP gimp_func (whatever_You_like, arguments); #endif #namespace_CinePaint cinepaint_func (whatever_You_like, arguments); #endif