CPINFO (Windows CE 5.0)

Send Feedback

This structure contains information about a code page.

typedef struct _cpinfo { UINT MaxCharSize; BYTE DefaultChar[MAX_DEFAULTCHAR]; BYTE LeadByte[MAX_LEADBYTES]; } CPINFO; 

Members

  • MaxCharSize
    Maximum length, in bytes, of a character in this code page.
  • DefaultChar
    Default character used in translations into this code page. This character is used by the WideCharToMultiByte function if an explicit default character is not given.
  • LeadByte
    Fixed-length array of lead-byte ranges, where the number of lead-byte ranges is variable. If there are no lead bytes in this code page, then every element of the array is NULL. If there are lead bytes in this code page, a starting value and ending value is given for each range. Ranges are inclusive. The maximum number of lead-byte ranges for any code page is 5. The array uses two bytes to describe each range, with a double-byte terminating null character after the last range.

Remarks

Lead bytes are unique to double-byte character sets (DBCS). A lead byte is the first byte of a 2-byte character in a DBCS. Lead bytes occupy a specific range of byte values.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Winnls.h.

See Also

GetCPInfo | WideCharToMultiByte

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.