/* * Copyright (C) 2016 Matthias Klumpp * * Licensed under the GNU Lesser General Public License Version 3 * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the license, or * (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see . */ module asgen.bindings.freetype; public import asgen.bindings.freetypeTypes; extern(C): nothrow: @nogc: FT_Error FT_Init_FreeType (FT_Library *alibrary); FT_Error FT_Done_Library (FT_Library library); FT_Error FT_New_Face (FT_Library library, const(char) *filepathname, FT_Long face_index, FT_Face *aface); FT_Error FT_New_Memory_Face (FT_Library library, const FT_Byte *file_base, FT_Long file_size, FT_Long face_index, FT_Face *aface); FT_Error FT_Done_Face (FT_Face face); FT_Error FT_Get_BDF_Charset_ID (FT_Face face, const char* *acharset_encoding, const char* *acharset_registry); FT_UInt FT_Get_Char_Index (FT_Face face, FT_ULong charcode); FT_ULong FT_Get_First_Char (FT_Face face, FT_UInt *agindex); FT_ULong FT_Get_Next_Char (FT_Face face, FT_ULong char_code, FT_UInt *agindex); FT_Error FT_Select_Charmap (FT_Face face, FT_Encoding encoding); FT_Error FT_Set_Charmap (FT_Face face, FT_CharMap charmap);