Re: Better implementation of GetCalendarInfoA
11 May
2002
11 May
'02
10:47 p.m.
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(a)free.fr http://fgouget.free.fr/ Any sufficiently advanced bug is indistinguishable from a feature. -- from some indian guy
8618
Age (days ago)
8618
Last active (days ago)
0 comments
1 participants
participants (1)
-
Francois Gouget