1. Greg+Wolf: UCL
- Posted by Al Getz <Xaxo at aol.com> Jul 18, 2005
- 512 views
Hi guys, Doesnt Win98 have a download for unicode support? --QUOTE The Microsoft® Layer for Unicode (MSLU) provides a complete set of Unicode APIs on Microsoft Windows® 95, Windows 98, and Windows Millennium Edition (Windows Me). With this, Unicode applications can run on Microsoft Windows NT®, Windows 2000, Windows XP, and Windows 95/98/Me. --END QUOTE Take care, Al And, good luck with your Euphoria programming! My bumper sticker: "I brake for LED's"
2. Re: Greg+Wolf: UCL
- Posted by don cole <doncole at pacbell.net> Jul 19, 2005
- 514 views
Al Getz wrote: > > Hi guys, > > Doesnt Win98 have a download for unicode support? > > --QUOTE > The Microsoft® Layer for Unicode (MSLU) provides a complete set > of Unicode APIs on Microsoft Windows® 95, Windows 98, and Windows > Millennium Edition (Windows Me). With this, Unicode applications > can run on Microsoft Windows NT®, Windows 2000, Windows XP, and > Windows 95/98/Me. > --END QUOTE > > > Take care, > Al > > And, good luck with your Euphoria programming! > > My bumper sticker: "I brake for LED's" > http://www.slovo.info/unifonts.htm Don Cole, SF
3. Re: Greg+Wolf: UCL
- Posted by Al Getz <Xaxo at aol.com> Jul 19, 2005
- 516 views
don cole wrote: > > Al Getz wrote: > > > > Hi guys, > > > > Doesnt Win98 have a download for unicode support? > > > > --QUOTE > > The Microsoft® Layer for Unicode (MSLU) provides a complete set > > of Unicode APIs on Microsoft Windows® 95, Windows 98, and Windows > > Millennium Edition (Windows Me). With this, Unicode applications > > can run on Microsoft Windows NT®, Windows 2000, Windows XP, and > > Windows 95/98/Me. > > --END QUOTE > > > > > > Take care, > > Al > > > > And, good luck with your Euphoria programming! > > > > My bumper sticker: "I brake for LED's" > > > > <a > href="http://www.slovo.info/unifonts.htm">http://www.slovo.info/unifonts.htm</a> > > Don Cole, > SF > Hey thanks for posting that info Don. That could be very useful. Take care, Al And, good luck with your Euphoria programming! My bumper sticker: "I brake for LED's"
4. Re: Greg+Wolf: UCL
- Posted by Greg Haberek <ghaberek at gmail.com> Jul 19, 2005
- 494 views
- Last edited Jul 20, 2005
> --QUOTE > The Microsoft(r) Layer for Unicode (MSLU) provides a complete set > of Unicode APIs on Microsoft Windows(r) 95, Windows 98, and Windows > Millennium Edition (Windows Me). With this, Unicode applications > can run on Microsoft Windows NT(r), Windows 2000, Windows XP, and > Windows 95/98/Me. > --END QUOTE This is kind of a Microsoft 'hack' feature. It requires special linking parameters when compiling. It basically looks for a Unicode routine, and if it doesn't find it, converts the Unicode to ANSI, calls the ANSI routine, then converts the result back to Unicode. I'm working on implementing a form of this into Euphoria code and I hope Derek will be able to use it in the next Win32Lib. Mine will do the same thing as above but with Euphoria sequences. My peek_unicode()/allocate_unicode() routines already do part of it. ~Greg ~Greg