This interface is sent by the debug engine (DE) to indicate that the debugging symbols for a module being debugged have been loaded. (http://msdn.microsoft.com/en-ca/library/bb160924.aspx)
Inheritance: AD7AsynchronousEvent, IDebugSymbolSearchEvent2
Beispiel #1
0
        /// <summary>
        /// Engines notify the debugger about the results of a symbol search by sending an instance of IDebugSymbolSearchEvent2.
        /// Not used.
        /// </summary>
        /// <param name="module"></param>
        /// <param name="status"></param>
        /// <param name="dwStatusFlags"></param>
        public void OnSymbolSearch(AD7Module module, string status, uint dwStatusFlags)
        {
            string statusString = (dwStatusFlags == 1 ? "Symbols Loaded - " : "No symbols loaded") + status;

            AD7SymbolSearchEvent eventObject = new AD7SymbolSearchEvent(module, statusString, dwStatusFlags);

            Send(eventObject, AD7SymbolSearchEvent.IID, null);
        }
Beispiel #2
0
        /// <summary>
        /// Engines notify the debugger about the results of a symbol search by sending an instance of IDebugSymbolSearchEvent2.
        /// Not used.
        /// </summary>
        /// <param name="module"></param>
        /// <param name="status"></param>
        /// <param name="dwStatusFlags"></param>
        public void OnSymbolSearch(AD7Module module, string status, uint dwStatusFlags)
        {
            string statusString = (dwStatusFlags == 1 ? "Symbols Loaded - " : "No symbols loaded") + status;

            AD7SymbolSearchEvent eventObject = new AD7SymbolSearchEvent(module, statusString, dwStatusFlags);
            Send(eventObject, AD7SymbolSearchEvent.IID, null);
        }