This interface is sent by the debug engine (DE) to the session debug manager (SDM) when a program is loaded, but before any code is executed. (http://msdn.microsoft.com/en-ca/library/bb145834.aspx)
Inheritance: AD7StoppingEvent, IDebugLoadCompleteEvent2
Example #1
0
 internal static void Send(AD7Engine aEngine, AD7Thread aThread)
 {
     var xMessage = new AD7LoadCompleteEvent();
     aEngine.Callback.Send(xMessage, IID, aThread);
 }
Example #2
0
        /// <summary>
        /// Sends the event.
        /// </summary>
        /// <param name="aEngine"> The AD7Engine object that represents the DE. </param>
        /// <param name="aThread"> The AD7Thread object that represents the thread. </param>
        internal static void Send(AD7Engine aEngine, AD7Thread aThread)
        {
            var xMessage = new AD7LoadCompleteEvent();

            aEngine.Callback.Send(xMessage, IID, aThread);
        }
Example #3
0
 public void OnLoadComplete(AD7Thread thread)
 {
     AD7LoadCompleteEvent eventObject = new AD7LoadCompleteEvent();
     Send(eventObject, AD7LoadCompleteEvent.IID, thread);
 }