예제 #1
0
파일: AD7Engine.cs 프로젝트: zer09/Cosmos
        public int EnumThreads(out IEnumDebugThreads2 ppEnum)
        {
            // EnumThreads is called by the debugger when it needs to enumerate the threads in the program.

            ppEnum = new AD7ThreadEnum(new[] { mThread });
            return(VSConstants.S_OK);
        }
예제 #2
0
파일: AD7Process.cs 프로젝트: zer09/Cosmos
        public int EnumThreads(out IEnumDebugThreads2 ppEnum)
        {
            var xEnum = new AD7ThreadEnum(new IDebugThread2[] { mThread });

            ppEnum = xEnum;
            return(VSConstants.S_OK);
        }