From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6f641d1e7358d78 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 1995-01-25 19:36:32 PST Path: nntp.gmd.de!newsserver.jvnc.net!nntpserver.pppl.gov!princeton!udel!news.mathworks.com!hookup!swrinde!howland.reston.ans.net!news1.digex.net!ois.com!ois.com!not-for-mail From: beckwb@ois.com (R. William Beckwith) Newsgroups: comp.lang.ada Subject: Re: Ada + Multi-Byte/Wide Chars = Modern Language? Date: 25 Jan 1995 22:36:32 -0500 Organization: Objective Interface Systems, Inc. Message-ID: <3g75c0$la8@gamma.ois.com> References: <1995Jan23.183235.19361@midway.uchicago.edu> NNTP-Posting-Host: gamma.ois.com X-Newsreader: TIN [version 1.2 PL2] Date: 1995-01-25T22:36:32-05:00 List-Id: Richard L. Goerwitz (goer@quads.uchicago.edu) wrote: : Ada95 looks to be a useful language. It is. : One question, though: Does it fully support wide/multi-byte char- : acters? For example, am I free to write apps that utilize UTF-8 : or Unicode? Will I be able to interface these programs with the : outside world (e.g., X)? Does GNAT support these features? There is a multi-byte character type built into Ada95 called Wide_Character. This Wide_Character type maps nicely to Xlib's wchar_t type (we did this in our Ada95 X11R6 multi-threaded Xlib binding). wchar_t is used in Xlib's XIMText struct and the Xwc... functions. ... Bill