#ifndef __GRP_UTIL_H__ #define __GRP_UTIL_H__ int DMG_UStrLen(UINT16 *str); BOOL DMG_UStrCmp(UINT16 *str1, UINT16 *str2); void DMG_UStrCpy(UINT16 *str_dst, UINT16 *str_src); void DMG_UStrNCpy(UINT16 *str_dst, UINT16 *str_src, int len); void DMG_UStrCat(UINT16 *str_dst, UINT16 *str_src); UINT16 DMG_Ksx1001toUnicode(UINT16 code); UINT16 *DMG_MakeUniStr(char *str1, UINT16 *str2); UINT16 *DMG_MakeUniStr2(char *str); #endif