mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-26 23:26:47 -04:00
20 lines
204 B
C
20 lines
204 B
C
#ifndef OSFONT_H
|
|
#define OSFONT_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define OS_FONT_ANSI 0u
|
|
#define OS_FONT_SJIS 1u
|
|
|
|
u16 OSGetFontEncode();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|