示例#1
0
        public FontLibrary sceFontNewLib(FontNewLibParams* Params, uint* ErrorCode)
        {
            //if (Params != null) throw (new NotImplementedException("(Params != null)"));

            var FontLibrary = new FontLibrary()
            {
                Params = *Params,
            };

            *ErrorCode = 0;

            return FontLibrary;
        }
示例#2
0
        public FontLibraryHandle sceFontNewLib(FontNewLibParams* Params, uint* errorCode)
        {
            //if (Params != null) throw (new NotImplementedException("(Params != null)"));

            var FontLibrary = new FontLibrary()
            {
                Params = *Params,
            };

            return (FontLibraryHandle)FontLibraries.Create(FontLibrary);
        }