public int sceFontGetFontInfo(FontHandle FontHandle, FontInfo *FontInfo) { FontInfo[0] = new FontInfo() { }; return(0); }
public int sceFontGetFontInfo(Font Font, FontInfo *FontInfoPointer) { *FontInfoPointer = Font.GetFontInfo(); return(0); }
public int sceFontGetFontInfoByIndexNumber(FontLibraryHandle LibraryHandle, FontInfo *FontInfo, int Unknown, int FontIndex) { throw(new NotImplementedException()); }
public int sceFontGetFontInfoByIndexNumber(FontLibrary FontLibrary, FontInfo *FontInfoPointer, int Unknown, int FontIndex) { throw new NotImplementedException(); }