Beispiel #1
0
bool MBuffer::ConvertWideToAscii(void)				// Convert the string from Wide to Ascii
	{

	MString tmpstr;
	if(tmpstr.Create(GetWideBuffer())==false)
		{
		return false;
		}

	SetString(tmpstr.Get());
	return true;
	}