Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
796 B

/////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1997, Microsoft Corporation. All Rights Reserved.
//
// UniToInvInt.h :
//
// Owner : ChaeSeong Lim, HET MSCH RND (e-mail:[email protected])
//
// History : 1996/April
//
// Convert unicode hangul to reversed internal format.
/////////////////////////////////////////////////////////////////////////////
#ifndef __UNITOINVINT_H__
#define __UNITOINVINT_H__
// Convert from Unicode Hangul to Inversed internal code decomposed by jaso.
BOOL UniToInvInternal(LPCWSTR lpUniStr, LPSTR lpIntStr, int BufLength);
BOOL UniToInternal(LPCWSTR lpUniStr, LPSTR lpIntStr, int BufLength);
BOOL InternalToUni(LPCSTR lpInternal, LPWSTR lpUniStr, int BufLength);
#endif // !__UNITOINVINT_H__