/**************************************************************************** * * svgtypes.h * * The FreeType svg renderer internal types (specification). * * Copyright (C) 1996-2019 by * David Turner, Robert Wilhelm, Werner Lemberg and Moazin Khatti. * * This file is part of the FreeType project, and may only be used, * modified, and distributed under the terms of the FreeType project * license, LICENSE.TXT. By continuing to use, modify, or distribute * this file you indicate that you have read the license and * understand and accept it fully. * */ #ifndef FTSVGTYPES_H #define FTSVGTYPES_H #include #include FT_INTERNAL_OBJECTS_H #include FT_RENDER_H #include FT_OTSVG_H typedef struct SVG_RendererRec_ { FT_RendererRec root; /* This inherits FT_RendererRec */ FT_Bool loaded; FT_Bool hooks_set; SVG_RendererHooks hooks; /* Holds out hooks to the outside library */ } SVG_RendererRec; typedef struct SVG_RendererRec_* SVG_Renderer; #endif