mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
2ad2c5d1b8
*Fixed Creditscrash (noticed that giantpune can't count lol) *Fixed European Keyboard missplaced *Pimped the Home Menu (sound and stuff and a lot of fixes) *Fixed last compile warning thx to DRayX7 *Added S.Chinese Unicode Fix thx to pc9528
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_
|
|
|