OLD | NEW |
| (Empty) |
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.Diagnostics; | |
4 using System.Linq; | |
5 using System.Text; | |
6 using Microsoft.VisualStudio.Debugger.Interop; | |
7 | |
8 namespace Google.MsAd7.BaseImpl | |
9 { | |
10 class Engine : IDebugEngine2 | |
11 { | |
12 public int EnumPrograms(out IEnumDebugPrograms2 ppEnum) { | |
13 Debug.WriteLine("Engine.EnumPrograms"); | |
14 | |
15 throw new NotImplementedException(); | |
16 } | |
17 | |
18 public int Attach(IDebugProgram2[] rgpPrograms, IDebugProgramNode2[] rgpProg
ramNodes, uint celtPrograms, IDebugEventCallback2 pCallback, enum_ATTACH_REASON
dwReason) { | |
19 Debug.WriteLine("Engine.Attach"); | |
20 | |
21 throw new NotImplementedException(); | |
22 } | |
23 | |
24 public int CreatePendingBreakpoint(IDebugBreakpointRequest2 pBPRequest, out
IDebugPendingBreakpoint2 ppPendingBP) { | |
25 Debug.WriteLine("Engine.CreatePendingBreakpoint"); | |
26 | |
27 throw new NotImplementedException(); | |
28 } | |
29 | |
30 public int SetException(EXCEPTION_INFO[] pException) { | |
31 Debug.WriteLine("Engine.SetException"); | |
32 | |
33 throw new NotImplementedException(); | |
34 } | |
35 | |
36 public int RemoveSetException(EXCEPTION_INFO[] pException) { | |
37 Debug.WriteLine("Engine.RemoveSetException"); | |
38 | |
39 throw new NotImplementedException(); | |
40 } | |
41 | |
42 public int RemoveAllSetExceptions(ref Guid guidType) { | |
43 Debug.WriteLine("Engine.RemoveAllSetExceptions"); | |
44 | |
45 throw new NotImplementedException(); | |
46 } | |
47 | |
48 public int GetEngineId(out Guid pguidEngine) { | |
49 Debug.WriteLine("Engine.GetEngineId"); | |
50 | |
51 throw new NotImplementedException(); | |
52 } | |
53 | |
54 public int DestroyProgram(IDebugProgram2 pProgram) { | |
55 Debug.WriteLine("Engine.DestroyProgram"); | |
56 | |
57 throw new NotImplementedException(); | |
58 } | |
59 | |
60 public int ContinueFromSynchronousEvent(IDebugEvent2 pEvent) { | |
61 Debug.WriteLine("Engine.ContinueFromSynchronousEvent"); | |
62 | |
63 throw new NotImplementedException(); | |
64 } | |
65 | |
66 public int SetLocale(ushort wLangID) { | |
67 Debug.WriteLine("Engine.SetLocale"); | |
68 | |
69 throw new NotImplementedException(); | |
70 } | |
71 | |
72 public int SetRegistryRoot(string pszRegistryRoot) { | |
73 Debug.WriteLine("Engine.SetRegistryRoot"); | |
74 | |
75 throw new NotImplementedException(); | |
76 } | |
77 | |
78 public int SetMetric(string pszMetric, object varValue) { | |
79 Debug.WriteLine("Engine.SetMetric"); | |
80 | |
81 throw new NotImplementedException(); | |
82 } | |
83 | |
84 public int CauseBreak() { | |
85 Debug.WriteLine("Engine.CauseBreak"); | |
86 | |
87 throw new NotImplementedException(); | |
88 } | |
89 } | |
90 } | |
OLD | NEW |