First commit with most sources

This commit is contained in:
Godzil
2018-05-21 08:48:53 +01:00
parent 2be3c740c9
commit 61b60f3068
53 changed files with 11137 additions and 0 deletions

16
mmvm/kanjifont.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef _KANJIFONT_H
#define _KANJIFONT_H
#ifdef __cplusplus
extern "C" {
#endif
int InitKanjiFont(char *fontfile);
unsigned char *GetKanjiFont(int u, int d);
void GetKanjiFont16(int code, unsigned char *font);
#ifdef __cplusplus
}
#endif
#endif