This interface is sent by the debug engine (DE) to the session debug manager (SDM) when a program is attached to. (http://msdn.microsoft.com/en-ca/library/bb161345.aspx)
Inheritance: AD7AsynchronousEvent, IDebugProgramCreateEvent2
Exemplo n.º 1
0
        /// <summary>
        /// Sends the event.
        /// </summary>
        /// <param name="engine"> The AD7Engine object that represents the DE. </param>
        internal static void Send(AD7Engine engine)
        {
            AD7ProgramCreateEvent eventObject = new AD7ProgramCreateEvent();

            engine.Callback.Send(eventObject, IID, null);
        }
Exemplo n.º 2
0
 internal static void Send(AD7Engine engine)
 {
     AD7ProgramCreateEvent eventObject = new AD7ProgramCreateEvent();
     engine.Callback.Send(eventObject, IID, null);
 }