예제 #1
0
 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);
 }
예제 #3
0
 public int sceFontGetFontInfoByIndexNumber(FontLibraryHandle LibraryHandle, FontInfo *FontInfo, int Unknown, int FontIndex)
 {
     throw(new NotImplementedException());
 }
예제 #4
0
 public int sceFontGetFontInfoByIndexNumber(FontLibrary FontLibrary, FontInfo *FontInfoPointer, int Unknown,
                                            int FontIndex)
 {
     throw new NotImplementedException();
 }