dbghelp: Rename SymMatchString and forward it to SymMatchStringA.

This commit is contained in:
André Hentschel 2011-10-31 20:07:32 +01:00 committed by Alexandre Julliard
parent 044f645477
commit 7e3fe1975a
2 changed files with 4 additions and 4 deletions

View File

@ -137,8 +137,8 @@
@ stdcall SymLoadModuleExW(long long wstr wstr int64 long ptr long)
@ stdcall SymMatchFileName(str str ptr ptr)
@ stdcall SymMatchFileNameW(wstr wstr ptr ptr)
@ stdcall SymMatchString(str str long)
@ stub SymMatchStringA
@ stdcall SymMatchString(str str long) SymMatchStringA
@ stdcall SymMatchStringA(str str long)
@ stub SymMatchStringW
@ stub SymNext
@ stub SymNextW

View File

@ -1874,10 +1874,10 @@ DWORD WINAPI UnDecorateSymbolName(PCSTR DecoratedName, PSTR UnDecoratedName,
}
/******************************************************************
* SymMatchString (DBGHELP.@)
* SymMatchStringA (DBGHELP.@)
*
*/
BOOL WINAPI SymMatchString(PCSTR string, PCSTR re, BOOL _case)
BOOL WINAPI SymMatchStringA(PCSTR string, PCSTR re, BOOL _case)
{
regex_t preg;
BOOL ret;