On Sat, 11 May 2002, Vincent Béron wrote: [...] > Also, I'm not sure how to translate that code to the W version of the > function. Should the W call the A? Or reimplement the same algorithm, > with different string constants and function calls (A vs W)?
xxxA should call xxxW. Typically this is done as follows (the NT way): xxxA() { convert input parameters from Ansi to Unicode ret=call xxxW convert return values from Unicode to Ansi return ret; } -- Francois Gouget [EMAIL PROTECTED] http://fgouget.free.fr/ Any sufficiently advanced bug is indistinguishable from a feature. -- from some indian guy