added SplitSymbols stub
authorChristoph von Wittich <christoph_vw@reactos.org>
Mon, 5 Dec 2005 16:55:55 +0000 (16:55 +0000)
committerChristoph von Wittich <christoph_vw@reactos.org>
Mon, 5 Dec 2005 16:55:55 +0000 (16:55 +0000)
svn path=/trunk/; revision=19909

reactos/lib/imagehlp/imagehlp.def
reactos/lib/imagehlp/modify.c

index 646c197..a6ebdbb 100644 (file)
@@ -42,7 +42,7 @@ ReBaseImage @37
 RemoveRelocations @1
 SearchTreeForFile=Dbghelp.SearchTreeForFile @40
 SetImageConfigInformation @41
-;SplitSymbols @42
+SplitSymbols @42
 StackWalk=Dbghelp.StackWalk @43
 StackWalk64=Dbghelp.StackWalk64 @44
 SymCleanup=Dbghelp.SymCleanup @45
index 02a187b..1e09218 100644 (file)
@@ -1019,6 +1019,21 @@ RemoveRelocations(PCHAR ImageName)
     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
  */