Official mirror of https://gitlab.freedesktop.org/freetype/freetype
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
793 B
20 lines
793 B
#ifndef FTGRAYS_H |
|
#define FTGRAYS_H |
|
|
|
#include <ftimage.h> |
|
|
|
/*************************************************************************/ |
|
/* */ |
|
/* To make ftgrays.h independent from configuration files we check */ |
|
/* whether EXPORT_DEF has been defined already. */ |
|
/* */ |
|
/* On some systems and compilers (Win32 mostly), an extra keyword is */ |
|
/* necessary to compile the library as a DLL. */ |
|
/* */ |
|
#ifndef EXPORT_DEF |
|
#define EXPORT_DEF extern |
|
#endif |
|
|
|
EXPORT_DEF FT_Raster_Funcs ft_grays_raster; |
|
|
|
#endif
|
|
|