Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <convutils.h>
Link against: convutils.lib

Class CnvUtilities

class CnvUtilities;

Description

Provides static character conversion utilities for complex encodings. Its functions may be called from a plug-in DLL's implementation of CnvUtilities::ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness,const TDesC8 &,TDes8 &,const TDesC16 &,CCnvCharacterSetConverter::TArrayOfAscendingIndices &,const TArray< SCharacterSet > &) and ConvertToUnicode().

These utility functions are provided for use when converting to/from complex character set encodings, including modal encodings. Modal encodings are those where the interpretation of a given byte of data is dependent on the current mode; mode changing is performed by escape sequences which occur in the byte stream. A non-modal complex encoding is one in which characters are encoded using variable numbers of bytes. The number of bytes used to encode a character depends on the value of the initial byte.

Members

Defined in CnvUtilities:


Member functions


ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness,const TDesC8 &,TDes8 &,const TDesC16 &,CCnvCharacterSetConverter::TArrayOfAscendingIndices &,const TArray< SCharacterSet > &)

IMPORT_C static TInt ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters, const TDesC8 &aReplacementForUnconvertibleUnicodeCharacters, TDes8 &aForeign, const TDesC16 &aUnicode, CCnvCharacterSetConverter::TArrayOfAscendingIndices &aIndicesOfUnconvertibleCharacters, const TArray< SCharacterSet > &aArrayOfCharacterSets);

Description

Converts Unicode text into a complex foreign character set encoding. This is an encoding which cannot be converted simply by calling CCnvCharacterSetConverter::DoConvertFromUnicode(const SCnvConversionData &,TEndianness,const TDesC8 &,TDes8 &,const TDesC16 &,TArrayOfAscendingIndices &). It may be modal (e.g. JIS) or non-modal (e.g. Shift-JIS).

The Unicode text specified in aUnicode is converted using the array of conversion data objects (aArrayOfCharacterSets) provided by the plug-in for the complex character set encoding, and the converted text is returned in aForeign. Any existing contents in aForeign are overwritten.

Unlike CCnvCharacterSetConverter::DoConvertFromUnicode(const SCnvConversionData &,TEndianness,const TDesC8 &,TDes8 &,const TDesC16 &,TArrayOfAscendingIndices &), multiple character sets can be specified. aUnicode is converted using the first character conversion data object in the array. When a character is found which cannot be converted using that data, each character set in the array is tried in turn. If it cannot be converted using any object in the array, the index of the character is appended to aIndicesOfUnconvertibleCharacters and the character is replaced by aReplacementForUnconvertibleUnicodeCharacters.

If it can be converted using another object in the array, that object is used to convert all subsequent characters until another unconvertible character is found.

Parameters

CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters

The default endian-ness to use when writing the characters in the foreign character set. If an endian-ness for foreign characters is specified in the current conversion data object, then that is used instead and the value of aDefaultEndiannessOfForeignCharacters is ignored.

const TDesC8 &aReplacementForUnconvertibleUnicodeCharacters

The single character (one or more byte values) which is used to replace unconvertible characters.

TDes8 &aForeign

On return, contains the converted text in the non-Unicode character set.

const TDesC16 &aUnicode

The source Unicode text to be converted.

CCnvCharacterSetConverter::TArrayOfAscendingIndices &aIndicesOfUnconvertibleCharacters

On return, holds an ascending array of the indices of each Unicode character in the source text which could not be converted (because none of the target character sets have an equivalent character).

const TArray< CnvUtilities::SCharacterSet > &aArrayOfCharacterSets

Array of character conversion data objects, representing the character sets which comprise a complex character set encoding. These are used in sequence to convert the Unicode text. There must be at least one character set in this array and no character set may have any NULL member data, or a panic occurs.

Return value

TInt

The number of unconverted characters left at the end of the input descriptor (e.g. because aForeign was not long enough to hold all the text), or a negative error value, as defined in CCnvCharacterSetConverter::TError.


ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness,const TDesC8 &,TDes8 &,const TDesC16 &,CCnvCharacterSetConverter::TArrayOfAscendingIndices &,const TArray< SCharacterSet > &,TUint &,TUint)

IMPORT_C static TInt ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters, const TDesC8 &aReplacementForUnconvertibleUnicodeCharacters, TDes8 &aForeign, const TDesC16 &aUnicode, CCnvCharacterSetConverter::TArrayOfAscendingIndices &aIndicesOfUnconvertibleCharacters, const TArray< SCharacterSet > &aArrayOfCharacterSets, TUint &aOutputConversionFlags, TUint aInputConversionFlags);

Description

Converts Unicode text into a complex foreign character set encoding. This is an encoding which cannot be converted simply by a call to CCnvCharacterSetConverter::DoConvertFromUnicode(const SCnvConversionData &,TEndianness,const TDesC8 &,TDes8 &,const TDesC16 &,TArrayOfAscendingIndices &). It may be modal (e.g. JIS) or non-modal (e.g. Shift-JIS).

The Unicode text specified in aUnicode is converted using the array of conversion data objects (aArrayOfCharacterSets) provided by the plug-in for the complex character set encoding and the converted text is returned in aForeign. The function can either append to aForeign or overwrite its contents (if any).

Unlike CCnvCharacterSetConverter::DoConvertFromUnicode(const SCnvConversionData &,TEndianness,const TDesC8 &,TDes8 &,const TDesC16 &,TArrayOfAscendingIndices &), multiple character sets can be specified. aUnicode is converted using the first character conversion data object in the array. When a character is found which cannot be converted using that data, each character set in the array is tried in turn. If it cannot be converted using any object in the array, the index of the character is appended to aIndicesOfUnconvertibleCharacters and the character is replaced by aReplacementForUnconvertibleUnicodeCharacters.

If it can be converted using another object in the array, that object is used to convert all subsequent characters until another unconvertible character is found.

Parameters

CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters

The default endian-ness to use when writing the characters in the foreign character set. If an endian-ness for foreign characters is specified in the current conversion data object, then that is used instead and the value of aDefaultEndiannessOfForeignCharacters is ignored.

const TDesC8 &aReplacementForUnconvertibleUnicodeCharacters

The single character (one or more byte values) which is used to replace unconvertible characters.

TDes8 &aForeign

On return, contains the converted text in the non-Unicode character set. This may already contain some text. If it does, and if aInputConversionFlags specifies EInputConversionFlagAppend, then the converted text is appended to this descriptor.

const TDesC16 &aUnicode

The source Unicode text to be converted.

CCnvCharacterSetConverter::TArrayOfAscendingIndices &aIndicesOfUnconvertibleCharacters

On return, holds an ascending array of the indices of each Unicode character in the source text which could not be converted (because none of the target character sets have an equivalent character).

const TArray< CnvUtilities::SCharacterSet > &aArrayOfCharacterSets

Array of character set data objects. These are used in sequence to convert the Unicode text. There must be at least one character set in this array and no character set may have any NULL member data, or a panic occurs.

TUint &aOutputConversionFlags

If the input descriptor ended in a truncated sequence, e.g. the first half only of a Unicode surrogate pair, this returns with the EOutputConversionFlagInputIsTruncated flag set.

TUint aInputConversionFlags

Specify CCnvCharacterSetConverter::EInputConversionFlagAppend to append the text to aForeign. Specify CCnvCharacterSetConverter::EInputConversionFlagAllowTruncatedInputNotEvenPartlyConsumable to prevent the function from returning the error-code EErrorIllFormedInput when the input descriptor consists of nothing but a truncated sequence. The CCnvCharacterSetConverter::EInputConversionFlagStopAtFirstUnconvertibleCharacter flag must not be set, otherwise a panic occurs.

Return value

TInt

The number of unconverted characters left at the end of the input descriptor (e.g. because aForeign was not long enough to hold all the text), or a negative error value, as defined in CCnvCharacterSetConverter::TError.


ConvertFromIntermediateBufferInPlace(TInt,TDes8 &,TInt &,const TDesC8 &,TInt)

IMPORT_C static void ConvertFromIntermediateBufferInPlace(TInt aStartPositionInDescriptor, TDes8 &aDescriptor, TInt &aNumberOfCharactersThatDroppedOut, const TDesC8 &aEscapeSequence, TInt aNumberOfBytesPerCharacter);

Description

Inserts an escape sequence into the descriptor.

This function is provided to help in the implementation of CnvUtilities::ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness,const TDesC8 &,TDes8 &,const TDesC16 &,CCnvCharacterSetConverter::TArrayOfAscendingIndices &,const TArray< SCharacterSet > &) for modal character set encodings. Each CnvUtilities::SCharacterSet object in the array passed to CnvUtilities::ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness,const TDesC8 &,TDes8 &,const TDesC16 &,CCnvCharacterSetConverter::TArrayOfAscendingIndices &,const TArray< SCharacterSet > &) must have its iConvertFromIntermediateBufferInPlace member assigned. To do this for a modal character set encoding, implement a function whose signature matches that of FConvertFromIntermediateBufferInPlace and which calls this function, passing all arguments unchanged, and specifying the character set's escape sequence and the number of bytes per character.

Parameters

TInt aStartPositionInDescriptor

The byte position in aDescriptor at which the escape sequence is inserted. If the character set uses more than one byte per character, this position must be the start of a character, otherwise a panic occurs.

TDes8 &aDescriptor

The descriptor into which the escape sequence is inserted.

TInt &aNumberOfCharactersThatDroppedOut

The escape sequence is inserted into the start of aDescriptor and any characters that need to drop out to make room for the escape sequence (because the descriptor's maximum length was not long enough) drop out from the end of the buffer. This parameter indicates the number of characters that needed to drop out.

const TDesC8 &aEscapeSequence

The escape sequence for the character set.

TInt aNumberOfBytesPerCharacter

The number of bytes per character.


ConvertToUnicodeFromModalForeign(CCnvCharacterSetConverter::TEndianness,TDes16 &,const TDesC8 &,TInt &,TInt &,TInt &,const TArray< SState > &)

IMPORT_C static TInt ConvertToUnicodeFromModalForeign(CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters, TDes16 &aUnicode, const TDesC8 &aForeign, TInt &aState, TInt &aNumberOfUnconvertibleCharacters, TInt &aIndexOfFirstByteOfFirstUnconvertibleCharacter, const TArray< SState > &aArrayOfStates);

Description

Converts text from a modal foreign character set encoding into Unicode.

The non-Unicode text specified in aForeign is converted using the array of character set conversion objects (aArrayOfStates) provided by the plug-in, and the converted text is returned in aUnicode. The function can either append to aUnicode or overwrite its contents (if any), depending on the input conversion flags specified. The first element in aArrayOfStates is taken to be the default mode (i.e. the mode to assume by default if there is no preceding escape sequence).

Parameters

CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters

The default endian-ness of the foreign characters. If an endian-ness for foreign characters is specified in the conversion data, then that is used instead and the value of aDefaultEndiannessOfForeignCharacters is ignored.

TDes16 &aUnicode

On return, contains the text converted into Unicode.

const TDesC8 &aForeign

The non-Unicode source text to be converted.

TInt &aState

Used to store a modal character set encoding's current mode across multiple calls to ConvertToUnicode() on the same input descriptor. This argument should be passed the same object as passed to the plug-in's ConvertToUnicode() exported function.

TInt &aNumberOfUnconvertibleCharacters

On return, contains the number of characters in aForeign which were not converted. Characters which cannot be converted are output as Unicode replacement characters (0xfffd).

TInt &aIndexOfFirstByteOfFirstUnconvertibleCharacter

On return, the index of the first byte of the first unconvertible character. For instance if the first character in the input descriptor (aForeign) could not be converted, then this parameter is set to the first byte of that character, i.e. zero. A negative value is returned if all the characters were converted.

const TArray< CnvUtilities::SState > &aArrayOfStates

Array of character set conversion data objects, and their escape sequences ("modes"). There must be one or more modes in this array, none of the modes can have any NULL member data, and each mode's escape sequence must begin with KControlCharacterEscape (0x1b) or a panic occurs.

Return value

TInt

The number of unconverted bytes left at the end of the input descriptor, or a negative error value, as defined in TError.


ConvertToUnicodeFromModalForeign(CCnvCharacterSetConverter::TEndianness,TDes16 &,const TDesC8 &,TInt &,TInt &,TInt &,const TArray< SState > &,TUint &,TUint)

IMPORT_C static TInt ConvertToUnicodeFromModalForeign(CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters, TDes16 &aUnicode, const TDesC8 &aForeign, TInt &aState, TInt &aNumberOfUnconvertibleCharacters, TInt &aIndexOfFirstByteOfFirstUnconvertibleCharacter, const TArray< SState > &aArrayOfStates, TUint &aOutputConversionFlags, TUint aInputConversionFlags);

Description

Parameters

CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters

The default endian-ness for the foreign characters. If an endian-ness for foreign characters is specified in the conversion data, then that is used instead and the value of aDefaultEndiannessOfForeignCharacters is ignored.

TDes16 &aUnicode

On return, contains the text converted into Unicode.

const TDesC8 &aForeign

The non-Unicode source text to be converted.

TInt &aState

Used to store a modal character set encoding's current mode across multiple calls to ConvertToUnicode() on the same input descriptor. This argument should be passed the same object as passed to the plug-in's ConvertToUnicode() exported function.

TInt &aNumberOfUnconvertibleCharacters

On return, contains the number of characters in aForeign which were not converted. Characters which cannot be converted are output as Unicode replacement characters (0xfffd).

TInt &aIndexOfFirstByteOfFirstUnconvertibleCharacter

On return, the index of the first byte of the first unconvertible character. For instance if the first character in the input descriptor (aForeign) could not be converted, then this parameter is set to the first byte of that character, i.e. zero. A negative value is returned if all the characters were converted.

const TArray< CnvUtilities::SState > &aArrayOfStates

Array of character set conversion data objects, and their escape sequences. There must be one or more modes in this array, none of the modes can have any NULL member data, and each mode's escape sequence must begin with KControlCharacterEscape (0x1b) or a panic occurs.

TUint &aOutputConversionFlags

If the input descriptor ended in a truncated sequence, e.g. a part of a multi-byte character, aOutputConversionFlags returns with the EOutputConversionFlagInputIsTruncated flag set.

TUint aInputConversionFlags

Specify CCnvCharacterSetConverter::EInputConversionFlagAppend to append the text to aUnicode. Specify EInputConversionFlagAllowTruncatedInputNotEvenPartlyConsumable to prevent the function from returning the error-code EErrorIllFormedInput when the input descriptor consists of nothing but a truncated sequence. The CCnvCharacterSetConverter::EInputConversionFlagStopAtFirstUnconvertibleCharacter flag must not be set, otherwise a panic occurs.

Return value

TInt

The number of unconverted bytes left at the end of the input descriptor, or a negative error value, as defined in TError.


ConvertToUnicodeFromHeterogeneousForeign(CCnvCharacterSetConverter::TEndianness,TDes16 &,const TDesC8 &,TInt &,TInt &,const TArray< SMethod > &)

IMPORT_C static TInt ConvertToUnicodeFromHeterogeneousForeign(CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters, TDes16 &aUnicode, const TDesC8 &aForeign, TInt &aNumberOfUnconvertibleCharacters, TInt &aIndexOfFirstByteOfFirstUnconvertibleCharacter, const TArray< SMethod > &aArrayOfMethods);

Description

Converts text from a non-modal complex character set encoding (e.g. Shift-JIS or EUC-JP) into Unicode.The non-Unicode text specified in aForeign is converted using the array of character set conversion methods (aArrayOfMethods) provided by the plug-in, and the converted text is returned in aUnicode. Overwrites the contents, if any, of aUnicode.

Parameters

CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters

The default endian-ness of the foreign characters. If an endian-ness for foreign characters is specified in the conversion data, then that is used instead and the value of aDefaultEndiannessOfForeignCharacters is ignored.

TDes16 &aUnicode

On return, contains the text converted into Unicode.

const TDesC8 &aForeign

The non-Unicode source text to be converted.

TInt &aNumberOfUnconvertibleCharacters

On return, contains the number of characters in aForeign which were not converted. Characters which cannot be converted are output as Unicode replacement characters (0xfffd).

TInt &aIndexOfFirstByteOfFirstUnconvertibleCharacter

On return, the index of the first byte of the first unconvertible character. For instance if the first character in the input descriptor (aForeign) could not be converted, then this parameter is set to the first byte of that character, i.e. zero. A negative value is returned if all the characters were converted.

const TArray< CnvUtilities::SMethod > &aArrayOfMethods

Array of conversion methods. There must be one or more methods in this array and none of the methods in the array can have any NULL member data or a panic occurs.

Return value

TInt

The number of unconverted bytes left at the end of the input descriptor, or a negative error value, as defined in TError.


ConvertToUnicodeFromHeterogeneousForeign(CCnvCharacterSetConverter::TEndianness,TDes16 &,const TDesC8 &,TInt &,TInt &,const TArray< SMethod > &,TUint &,TUint)

IMPORT_C static TInt ConvertToUnicodeFromHeterogeneousForeign(CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters, TDes16 &aUnicode, const TDesC8 &aForeign, TInt &aNumberOfUnconvertibleCharacters, TInt &aIndexOfFirstByteOfFirstUnconvertibleCharacter, const TArray< SMethod > &aArrayOfMethods, TUint &aOutputConversionFlags, TUint aInputConversionFlags);

Description

Parameters

CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters

The default endian-ness for the foreign characters. If an endian-ness for foreign characters is specified in the conversion data, then that is used instead and the value of aDefaultEndiannessOfForeignCharacters is ignored.

TDes16 &aUnicode

On return, contains the text converted into Unicode.

const TDesC8 &aForeign

The non-Unicode source text to be converted.

TInt &aNumberOfUnconvertibleCharacters

On return, contains the number of characters in aForeign which were not converted. Characters which cannot be converted are output as Unicode replacement characters (0xfffd).

TInt &aIndexOfFirstByteOfFirstUnconvertibleCharacter

On return, the index of the first byte of the first unconvertible character. For instance if the first character in the input descriptor (aForeign) could not be converted, then this parameter is set to the first byte of that character, i.e. zero. A negative value is returned if all the characters were converted.

const TArray< CnvUtilities::SMethod > &aArrayOfMethods

Array of conversion methods. There must be one or more methods in this array and none of the methods in the array can have any NULL member data or a panic occurs.

TUint &aOutputConversionFlags

If the input descriptor ended in a truncated sequence, e.g. a part of a multi-byte character, aOutputConversionFlags returns with the EOutputConversionFlagInputIsTruncated flag set.

TUint aInputConversionFlags

Specify CCnvCharacterSetConverter::EInputConversionFlagAppend to append the text to aUnicode. Specify EInputConversionFlagAllowTruncatedInputNotEvenPartlyConsumable to prevent the function from returning the error-code EErrorIllFormedInput when the input descriptor consists of nothing but a truncated sequence. The CCnvCharacterSetConverter::EInputConversionFlagStopAtFirstUnconvertibleCharacter flag must not be set, otherwise a panic occurs.

Return value

TInt

The number of unconverted bytes left at the end of the input descriptor, or a negative error value, as defined in TError.

[Top]


Member structures


Struct SCharacterSet

struct SCharacterSet;

Description

Stores information about a non-Unicode character set. The information is used to locate the conversion information required by CnvUtilities::ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness,const TDesC8 &,TDes8 &,const TDesC16 &,CCnvCharacterSetConverter::TArrayOfAscendingIndices &,const TArray< SCharacterSet > &) and ConvertToUnicode().

An array of these structs that contains all available character sets can be generated by CreateArrayOfCharacterSetsAvailableLC() and CreateArrayOfCharacterSetsAvailableL(), and is used by one of the overloads of PrepareToConvertToOrFromL().

Members

Defined in CnvUtilities::SCharacterSet:

Member data


iConversionData

const SCnvConversionData * iConversionData;

Description

The conversion data.


iConvertFromIntermediateBufferInPlace

FConvertFromIntermediateBufferInPlace iConvertFromIntermediateBufferInPlace;

Description

A pointer to a function which "mangles" the text in a way appropriate to the target complex character set. For instance it might insert a shifting character, escape sequence, or other special characters.


iEscapeSequence

const TDesC8 * iEscapeSequence;

Description

The escape sequence which introduces the character set, i.e. it identifies this character set as the next one to use. Must not be NULL. If the character set is non-modal, this should be set to an empty descriptor.


Struct SState

struct SState;

Description

Character conversion data for one of the character sets which is specified in a modal character set encoding. An array of these structs is used when converting from a modal character set into Unicode, using CnvUtilities::ConvertToUnicodeFromModalForeign(CCnvCharacterSetConverter::TEndianness,TDes16 &,const TDesC8 &,TInt &,TInt &,TInt &,const TArray< SState > &). Neither of the members may be NULL.

Members

Defined in CnvUtilities::SState:

Member data


iEscapeSequence

const TDesC8 * iEscapeSequence;

Description

The escape sequence which introduces the character set, i.e. it identifies this character set as the next one to use. This must begin with KControlCharacterEscape.


iConversionData

const SCnvConversionData * iConversionData;

Description

The conversion data.


Struct SMethod

struct SMethod;

Description

Members

Defined in CnvUtilities::SMethod:

Member data


iNumberOfBytesAbleToConvert

FNumberOfBytesAbleToConvert iNumberOfBytesAbleToConvert;

Description

A pointer to a function which calculates the number of consecutive bytes in the remainder of the foreign descriptor which can be converted using the current character set's conversion data. It may return a negative CCnvCharacterSetConverter::TError value to indicate an error in the encoding.


iConvertToIntermediateBufferInPlace

FConvertToIntermediateBufferInPlace iConvertToIntermediateBufferInPlace;

Description

A pointer to a function which prepares the text for conversion into Unicode. For instance it might remove any shifting or other special characters.


iConversionData

const SCnvConversionData * iConversionData;

Description

The conversion data.


iNumberOfBytesPerCharacter

TInt16 iNumberOfBytesPerCharacter;

Description

The number of bytes per character.


iNumberOfCoreBytesPerCharacter

TInt16 iNumberOfCoreBytesPerCharacter;

Description

The number of core bytes per character.

[Top]


Member type definitions


Typedef FConvertFromIntermediateBufferInPlace

typedef void(* CnvUtilities::FConvertFromIntermediateBufferInPlace)(TInt aStartPositionInDescriptor, TDes8& aDescriptor, TInt& aNumberOfCharactersThatDroppedOut);

Description

A pointer to a function which "mangles" text when converting from Unicode into a complex modal or non-modal foreign character set encoding.

It might insert a shifting character, escape sequence, or other special characters.If the target character set encoding is modal, the implementation of this function may call the CnvUtilities::ConvertFromIntermediateBufferInPlace(TInt,TDes8 &,TInt &,const TDesC8 &,TInt) utility function which is provided because many modal character sets require an identical implementation of this function.

" convutils.lib "


Typedef FNumberOfBytesAbleToConvert

typedef TInt(* CnvUtilities::FNumberOfBytesAbleToConvert)(const TDesC8& aDescriptor);

Description

A pointer to a function which calculates the number of consecutive bytes in the remainder of the foreign descriptor which can be converted using the current character set's conversion data.

Called when converting from a non-modal complex character set encoding into Unicode. It may return a negative CCnvCharacterSetConverter::TError value to indicate an error in the encoding.

" convutils.lib "


Typedef FConvertToIntermediateBufferInPlace

typedef void(* CnvUtilities::FConvertToIntermediateBufferInPlace)(TDes8& aDescriptor);

Description

A pointer to a function which prepares the text for conversion into Unicode.

For instance it might remove any shifting or other special characters. Called when converting from a non-modal complex character set encoding into Unicode.

" convutils.lib "