Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Up Previous Next 

PATH 
Mac OS 8 and 9 Developer Documentation > Text Encoding Conversion Manager
Programming With the Text Encoding Conversion Manager



TECConversionInfo

When you call the function TECGetDirectTextEncodingConversions, you pass an array of text encoding conversion information structures. The function fills these structures with information about each type of supported conversion. A text encoding conversion information structure is defined by the TECConversionInfo data structure.

struct TECConversionInfo {
    TextEncoding    sourceEncoding;
    TextEncoding    destinationEncoding;
    UInt16          reserved1;
    UInt16          reserved2;
};
typedef struct TECConversionInfo TECConversionInfo;
sourceEncoding
The text encoding specification for the source text.

destinationEncoding
The text encoding specification for the destination text.

reserved1
Reserved.

reserved2
Reserved.


© 1999 Apple Computer, Inc. – (Last Updated 13 Dec 99)

Up Previous Next