APTR handle = CreateVectorFont(FT_Face face);
FT_Face passed to this function.
FT_Face is a data type for describing font handles allocated by the FreeType2 library
which Hollywood uses to render text. CreateVectorFont() has to return a handle which
is then passed in the CCMD_TEXT path command whenever Hollywood wants you to draw
some vector text. See DrawPath for details.
Hollywood will call FreeVectorFont() to free handles allocated by this function.
FT_Face describing a FreeType2 fontNULL
in case of an error