Searched refs:wideChar (Results 1 – 2 of 2) sorted by relevance
/external/ImageMagick/MagickCore/ |
D | utility-private.h | 55 *wideChar; in create_wchar_path() local 78 wideChar=(wchar_t *) AcquireQuantumMemory(count-3,sizeof(*wideChar)); in create_wchar_path() 79 wcscpy(wideChar,shortPath+4); in create_wchar_path() 80 return(wideChar); in create_wchar_path() 82 wideChar=(wchar_t *) AcquireQuantumMemory(count,sizeof(*wideChar)); in create_wchar_path() 83 if (wideChar == (wchar_t *) NULL) in create_wchar_path() 85 count=MultiByteToWideChar(CP_UTF8,0,utf8,-1,wideChar,count); in create_wchar_path() 88 wideChar=(wchar_t *) RelinquishMagickMemory(wideChar); in create_wchar_path() 91 return(wideChar); in create_wchar_path()
|
D | nt-base.c | 171 static inline char *create_utf8_string(const wchar_t *wideChar) in create_utf8_string() argument 179 count=WideCharToMultiByte(CP_UTF8,0,wideChar,-1,NULL,0,NULL,NULL); in create_utf8_string() 185 count=WideCharToMultiByte(CP_UTF8,0,wideChar,-1,utf8,count,NULL,NULL); in create_utf8_string()
|