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 fgouget@free.fr http://fgouget.free.fr/ Any sufficiently advanced bug is indistinguishable from a feature. -- from some indian guy