uOFW
Reverse engineered PSP kernel 6.60.
Loading...
Searching...
No Matches
lib_font.h
1/* Copyright (C) 2011 - 2016 The uOFW team
2 See the file COPYING for copying permission.
3*/
4
12#ifndef LIB_FONT_H
13#define LIB_FONT_H
14
15#include "../common/errors.h"
16
17/* lib_font specific error codes. */
18
19#define SCE_FONT_NOERROR (SCE_ERROR_OK)
20
21#define SCE_FONT_ERROR_NOMEMORY (0x80460001)
22#define SCE_FONT_ERROR_LIBID (0x80460002)
23#define SCE_FONT_ERROR_ARG (0x80460003)
25#define SCE_FONT_ERROR_NOFILE (0x80460004)
26#define SCE_FONT_ERROR_FILEOPEN (0x80460005)
27#define SCE_FONT_ERROR_FILECLOSE (0x80460006)
28#define SCE_FONT_ERROR_FILEREAD (0x80460007)
29#define SCE_FONT_ERROR_FILESEEK (0x80460008)
31#define SCE_FONT_ERROR_TOOMANYOPENED (0x80460009)
32#define SCE_FONT_ERROR_ILLEGALVERSION (0x8046000a)
33#define SCE_FONT_ERROR_DATAINCONSISTENT (0x8046000b)
34#define SCE_FONT_ERROR_EXPIRED (0x8046000c)
36#define SCE_FONT_ERROR_REGISTRY (0x8046000d)
38#define SCE_FONT_ERROR_NOSUPPORT (0x8046000e)
39#define SCE_FONT_ERR_UNKNOWN (0x8046ffff)
41#endif /* LIB_FONT_H */
42