The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: Farabi on September 05, 2010, 01:26:07 PM

Title: Unicode sorting
Post by: Farabi on September 05, 2010, 01:26:07 PM
Is Windows XP provide a function to sort unicode words?
Title: Re: Unicode sorting
Post by: Tedd on September 08, 2010, 01:28:34 PM
lstrcmpw should be okay -- depending on the format of your string, you may need to use multibytetowidechar
Title: Re: Unicode sorting
Post by: Vortex on September 09, 2010, 08:51:47 AM
Hi Onan,

Here is an example for you based on the C run-time functions.
Title: Re: Unicode sorting
Post by: Farabi on September 09, 2010, 12:47:42 PM
Quote from: Vortex on September 09, 2010, 08:51:47 AM
Hi Onan,

Here is an example for you based on the C run-time functions.

Thanks.