mirror of
https://github.com/rvtr/twl_wrapsdk.git
synced 2025-10-31 06:11:10 -04:00
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/twl_wrapsdk/trunk@210 4ee2a332-4b2b-5046-8439-1ba90f034370
32 lines
566 B
C
32 lines
566 B
C
|
|
#ifndef __CS_H__
|
|
#define __CS_H__
|
|
|
|
#include <twl.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/*---------------------------------------------------------------------------*
|
|
Name: CS_Sjis2Unicode
|
|
|
|
Description:
|
|
|
|
Arguments:
|
|
|
|
Returns: < 0 : success( return string length)
|
|
> 0 : error code
|
|
*---------------------------------------------------------------------------*/
|
|
int CS_Sjis2Unicode( void* uni_str, void* sjis_str);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
|
|
#endif /*__CS_H__*/
|