mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 19:15:07 +01:00
940fa4b441
*Added Japanese UnicodeFix made by Rudolph (thanks) (you still need to compile with a japanese font.ttf to have it work) *Added missing languagevariables issue 517, issue 515, issue 519
23 lines
271 B
C
23 lines
271 B
C
|
|
#ifndef CH2UNICODE_H_
|
|
#define CH2UNICODE_H_
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int CH2Unicode(char *szFrom,wchar_t *wszTo); //,int ctype);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|