Re: dbghelp: Implement SymEnumSourceFilesW.

2011-05-23 Thread Eric Pouech
The A version should call the W one, not the other way around. Alexandre, in order to properly manage this, we need to move file names in dbghelp from ansi to unicode but, as dbghelp API uses some kind of regular expression to match filenames, we need a unicode regex function set unfortunat

Re: dbghelp: Implement SymEnumSourceFilesW.

2011-05-23 Thread Alexandre Julliard
Eric Pouech writes: >> The A version should call the W one, not the other way around. > Alexandre, > > in order to properly manage this, we need to move file names in > dbghelp from ansi to unicode > but, as dbghelp API uses some kind of regular expression to match > filenames, we need a unicode

Re: dbghelp: Implement SymEnumSourceFilesW.

2011-05-23 Thread Alexandre Julliard
Andrew Nguyen writes: > This fixes bug 27222. > > --- > dlls/dbghelp/dbghelp.spec |2 +- > dlls/dbghelp/source.c | 102 > + > 2 files changed, 103 insertions(+), 1 deletions(-) The A version should call the W one, not the other way around.