Next Previous Contents

3.239 tgi_load_vectorfont

Function

Load the given vector font.

Header

tgi.h

Declaration

const tgi_vectorfont* __fastcall__ tgi_load_vectorfont (const char* name);

Description

Load a vector font into memory and return it. In case of errors, NULL is returned and an error is set, which can be retrieved using tgi_geterror. To use the font, it has to be installed using tgi_install_vectorfont.

Limits

  • The function is only available as fastcall function, so it may only be used in presence of a prototype.

Availability

cc65

See also

tgi_install_vectorfont, tgi_free_vectorfont

Example

None.


Next Previous Contents