The information in this article applies to:
SUMMARYAlthough Windows 95 is an eight-bit ANSI, or for Far East Windows, a Multibyte (MBCS) character set operating system, it implements a few Unicode functions. Windows 98 has added support for a few more functions and there are techniques to implement additional Unicode support. MORE INFORMATION
Windows 95 is natively an eight-bit character code operating system. That is, it fundamentally processes all character strings one byte at a time. Far East versions of Windows 95 are called Multibyte Character Set (MBCS) systems because they use a signal or lead byte combined with a second trailing byte to expand the character code range beyond the 256 limitation of a one-byte representation.
With this API subset, an application can read, write, display, and convert Unicode data. However, in some cases an application developer working with Unicode may find a need to work directly with the glyphs in the TrueType font file. Such a case arises if a software developer would like to use the services of the GetGlyphOutline() function. Unfortunately, there is no wide character implementation of this function on Windows 95. However, this function does work with TrueType glyph indices so the solution is convert the Unicode character code to a glyph index. A developer might also want to take advantage of the TrueType Open tables of a font to perform ligature or contextual glyph substitution. To do this, the application would need to work with glyph indices. See the "References" section of this article for more information on converting Unicode to glyph indices. REFERENCESFor additional information about Unicode and the GetGlyphOutline function, click the article number below to view the article in the Microsoft Knowledge Base: Q241358 PRB: The GetGlyphOutlineW Function Fails on Windows 95 and Windows 98For additional information about converting Unicode character codes, click the article number below to view the article in the Microsoft Knowledge Base: Q241020 HOWTO: Translate Unicode Character Codes to TrueType Glyph Indices in Windows 95For information on writing applications for world wide markets, please see the following book: Developing International Software for Windows 95 and Windows NT by Nadine Kano.Background white paper: Differences in Win32 API Implementations Among Windows Operating Systems by Noel Nyman. Available on MSDN in the Windows Platform Guidelines section. Additional query words:
Keywords : kbFont kbGDI kbSDKPlatform kbSDKWin32 kbTTFonts kbDSupport kbGrpGDI |
Last Reviewed: November 10, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |