mirror of
https://github.com/wiidev/usbloadergx.git
synced 2025-02-17 03:46:22 +01:00
![dimok321](/assets/img/avatar_default.png)
*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
25 lines
295 B
C
25 lines
295 B
C
//GB2Unicode.h
|
|
|
|
|
|
#ifndef GB2UNICODE_H_
|
|
#define GB2UNICODE_H_
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int ConverGB2Unicode(char *szFrom,wchar_t *wszTo);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //GB2UNICODE_H_
|
|
|