dbghelp: Rename SymMatchString and forward it to SymMatchStringA.
This commit is contained in:
parent
044f645477
commit
7e3fe1975a
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue