IMultiLanguage2::ConvertStringInIStream (Windows CE 5.0)

Send Feedback

This method converts the given stream from the source code page to the destination code page.

HRESULTConvertStringInIStream(DWORD* pdwMode,DWORDdwFlag,WCHAR* lpFallBack,DWORDdwSrcEncoding,DWORDdwDstEncoding,IStream* pstmIn,IStream* pstmOut);

Parameters

  • pdwMode
    [in, out] Address of storage for conversion context. A calling function should only provide storage that is initialized with zero at the first call to the method. The caller should not modify this value.
  • dwFlag
    [in] Specifies one of the MLCONVCHAR-defined bit flag values. A caller can specify the MLCONVCHAR_USEDEFCHAR constant, which indicates that when the method encounters an unconvertible character in the source stream, the sequence of characters in the lpFallBack parameter is to be used in its place.
  • lpFallBack
    [in] Null-terminated sequence of Unicode characters that are output in place of an unconvertible Unicode character when the dwFlag parameter is set to MLCONVCHAR_USEDEFCHAR.
  • dwSrcEncoding
    [in] Specifies the code page identifier value for the source stream. This value is equivalent to the uiCodePage member of the MIMECPINFO structure assigned to the dwSrcEncoding parameter.
  • dwDstEncoding
    [in] Specifies the code page identifier value for the destination stream. This value is equivalent to the uiCodePage member of the MIMECPINFO structure assigned to the dwDstEncoding parameter.
  • pstmIn
    [in] Pointer to the IStream interface for the source stream.
  • pstmOut
    [in] Pointer to the IStream interface where the converted result will be stored.

Return Values

The following table shows the possible return values for this method.

Value Description
S_OK Success.
S_FALSE The conversion specified is not supported on the system.
E_FAIL An error occurred.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Mlang.h, Mlang.idl.
Link Library: Mlang.dll.

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.