mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
added SplitSymbols stub
svn path=/trunk/; revision=19909
This commit is contained in:
parent
1eeae07bf0
commit
1f50809ad3
2 changed files with 16 additions and 1 deletions
|
@ -42,7 +42,7 @@ ReBaseImage @37
|
||||||
RemoveRelocations @1
|
RemoveRelocations @1
|
||||||
SearchTreeForFile=Dbghelp.SearchTreeForFile @40
|
SearchTreeForFile=Dbghelp.SearchTreeForFile @40
|
||||||
SetImageConfigInformation @41
|
SetImageConfigInformation @41
|
||||||
;SplitSymbols @42
|
SplitSymbols @42
|
||||||
StackWalk=Dbghelp.StackWalk @43
|
StackWalk=Dbghelp.StackWalk @43
|
||||||
StackWalk64=Dbghelp.StackWalk64 @44
|
StackWalk64=Dbghelp.StackWalk64 @44
|
||||||
SymCleanup=Dbghelp.SymCleanup @45
|
SymCleanup=Dbghelp.SymCleanup @45
|
||||||
|
|
|
@ -1019,6 +1019,21 @@ RemoveRelocations(PCHAR ImageName)
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOL
|
||||||
|
IMAGEAPI
|
||||||
|
SplitSymbols(LPSTR ImageName,
|
||||||
|
LPSTR SymbolsPath,
|
||||||
|
LPSTR SymbolFilePath,
|
||||||
|
DWORD Flags)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue