blob: d0c8bc13a62be4d7f4a28aceef083c761def39a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _PSXETC_H
#define _PSXETC_H
#ifdef __cplusplus
extern "C" {
#endif
void FntLoad(int x, int y);
char *FntSort(unsigned int *ot, char *pri, int x, int y, const char *text);
int FntOpen(int x, int y, int w, int h, int isbg, int n);
int FntPrint(int id, const char *fmt, ...);
char *FntFlush(int id);
#ifdef __cplusplus
}
#endif
#endif
|