Re: dbghelp functions are A only

2004-10-08 Thread Vincent Béron
Le ven 08/10/2004 à 13:48, Eric Pouech a écrit : > Vincent Béron a écrit : > > Hi, > > > > I noticed that dbghelp's functions are only implemented as A variant, > > while MSDN says they're available as either Unicode or Ascii variant. > > Should we rename the current ones A and create stub W befor

Re: dbghelp functions are A only

2004-10-08 Thread Eric Pouech
Vincent Béron a écrit : Hi, I noticed that dbghelp's functions are only implemented as A variant, while MSDN says they're available as either Unicode or Ascii variant. Should we rename the current ones A and create stub W before properly implementing in W and make the A call the W? you shouldn't re

Re: dbghelp functions are A only

2004-10-07 Thread Francois Gouget
On Thu, 7 Oct 2004, Vincent Béron wrote: [...] Also, I noticed quite a lot of prototypes in dbghelp.dll from MSDN with PTSTR or PCTSTR types for strings instead of LPTSTR. Should the prototype in dbghelp.h and the actual implementation use PTSTR or LPTSTR? TSTR is the same as TCHAR: it's either ANS

dbghelp functions are A only

2004-10-07 Thread Vincent Béron
Hi, I noticed that dbghelp's functions are only implemented as A variant, while MSDN says they're available as either Unicode or Ascii variant. Should we rename the current ones A and create stub W before properly implementing in W and make the A call the W? Also, I noticed quite a lot of prototy