Abtracted the innards of lldb-core away from the SB interface. There was some
overlap in the SWIG integration which has now been fixed by introducing
callbacks for initializing SWIG for each language (python only right now).
There was also a breakpoint command callback that called into SWIG which has
been abtracted into a callback to avoid cross over as well.

Added a new binary: lldb-platform

This will be the start of the remote platform that will use as much of the 
Host functionality to do its job so it should just work on all platforms.
It is pretty hollowed out for now, but soon it will implement a platform
using the GDB remote packets as the transport.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@128053 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/ScriptInterpreter.cpp b/source/Interpreter/ScriptInterpreter.cpp
index fd1e10a..7011c2e 100644
--- a/source/Interpreter/ScriptInterpreter.cpp
+++ b/source/Interpreter/ScriptInterpreter.cpp
@@ -91,14 +91,16 @@
 }
 
 void
-ScriptInterpreter::Initialize ()
+ScriptInterpreter::InitializeInterpreter (SWIGInitCallback python_swig_init_callback,
+                                          SWIGBreakpointCallbackFunction python_swig_breakpoint_callback)
 {
-//    ScriptInterpreterPython::Initialize ();
+    ScriptInterpreterPython::InitializeInterpreter (python_swig_init_callback, 
+                                                    python_swig_breakpoint_callback);
 }
 
 void
-ScriptInterpreter::Terminate ()
+ScriptInterpreter::TerminateInterpreter ()
 {
-//    ScriptInterpreterPython::Terminate ();
+    ScriptInterpreterPython::TerminateInterpreter ();
 }