mirror of https://github.com/GNOME/gimp.git
21 lines
552 B
C
21 lines
552 B
C
#ifndef gimp_composite_vis_h
|
|
#define gimp_composite_vis_h
|
|
|
|
extern gboolean gimp_composite_vis_init (void);
|
|
|
|
/*
|
|
* The function gimp_composite_*_install() is defined in the code generated by make-install.py
|
|
* I hate to create a .h file just for that declaration, so I do it here (for now).
|
|
*/
|
|
extern gboolean gimp_composite_vis_install (void);
|
|
|
|
#if defined(USE_VIS)
|
|
#if defined(ARCH_SPARC)
|
|
#if __GNUC__ >= 3
|
|
#define COMPILE_VIS_IS_OKAY (1)
|
|
#endif /* __GNUC__ > 3 */
|
|
#endif /* defined(ARCH_SPARC) */
|
|
#endif /* defined(USE_VIS) */
|
|
|
|
#endif
|