示例#1
0
文件: AD7Engine.cs 项目: e42s/VSLua
 // Informs a DE that the program specified has been atypically terminated and that the DE should 
 // clean up all references to the program and send a program destroy event.
 int IDebugEngine2.DestroyProgram(IDebugProgram2 pProgram)
 {
     return pProgram.Terminate();
 }
示例#2
0
 // Informs a DE that the program specified has been atypically terminated and that the DE should
 // clean up all references to the program and send a program destroy event.
 int IDebugEngine2.DestroyProgram(IDebugProgram2 pProgram)
 {
     return(pProgram.Terminate());
 }
示例#3
0
 int IDebugEngine2.DestroyProgram(IDebugProgram2 program)
 {
     EngineUtils.RequireOk(program.Terminate());
     _callbacks.OnProgramTerminated();
     return(VSConstants.S_OK);
 }
示例#4
0
 int IDebugProgram3.Terminate()
 {
     return(IDebugProgram2.Terminate());
 }
示例#5
0
 int IDebugEngine2.DestroyProgram(IDebugProgram2 program)
 {
     ErrorHandler.ThrowOnFailure(program.Terminate());
     _callbacks.OnProgramTerminated();
     return(VSConstants.S_OK);
 }