Define Cairo functions prototypes only when support is enabled

This commit is contained in:
Alessandro De Laurenzis 2022-10-29 05:28:12 +02:00
parent 68cecd5382
commit 70ebfb831b
1 changed files with 4 additions and 1 deletions

View File

@ -92,7 +92,6 @@ extern void grInformDriver();
/* C99 compat */
extern bool GrReadGlyphs();
extern bool GrBoxOutline();
extern bool grtcairoLoadFont();
extern int xloop_create();
extern bool groglLoadFont();
extern void GrX11Close();
@ -100,4 +99,8 @@ extern bool grx11LoadFont();
extern void xloop_end();
extern bool groglPreLoadFont();
#ifdef CAIRO
extern bool grtcairoLoadFont();
#endif
#endif /* _GRAPHICSINT_H */