diff --git a/src/raylib.h b/src/raylib.h index 7e1a1f838..133fb9d54 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1463,6 +1463,8 @@ RLAPI int GetPixelDataSize(int width, int height, int format); // G // Font loading/unloading functions RLAPI Font GetFontDefault(void); // Get the default Font +RLAPI int GetFontAvailableCodepoints(const char *fileName, int **codepoints); // Get number of available codepoints of font file and update the array of codepoints themselves +RLAPI int GetFontAvailableCodepointsFromMemory(const char *fileType, const unsigned char *fileData, int dataSize, int **codepoints); // Get number of available codepoints of font data and update the array of codepoints themselves RLAPI Font LoadFont(const char *fileName); // Load font from file into GPU memory (VRAM) RLAPI Font LoadFontEx(const char *fileName, int fontSize, int *codepoints, int codepointCount); // Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height RLAPI Font LoadFontFromImage(Image image, Color key, int firstChar); // Load font from Image (XNA style)