OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011 The Native Client Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #region | |
6 | |
7 using System; | |
8 using Microsoft.VisualStudio.Debugger.Interop; | |
9 | |
10 #endregion | |
11 | |
12 namespace MsAd7.BaseImpl_UnitTestProject { | |
13 class DebugThread2Mock : IDebugThread2 { | |
14 #region IDebugThread2 Members | |
15 | |
16 public int EnumFrameInfo(enum_FRAMEINFO_FLAGS dwFieldSpec, | |
17 uint nRadix, | |
18 out IEnumDebugFrameInfo2 ppEnum) { | |
19 throw new NotImplementedException(); | |
20 } | |
21 | |
22 public int GetName(out string pbstrName) { | |
23 throw new NotImplementedException(); | |
24 } | |
25 | |
26 public int SetThreadName(string pszName) { | |
27 throw new NotImplementedException(); | |
28 } | |
29 | |
30 public int GetProgram(out IDebugProgram2 ppProgram) { | |
31 throw new NotImplementedException(); | |
32 } | |
33 | |
34 public int CanSetNextStatement(IDebugStackFrame2 pStackFrame, | |
35 IDebugCodeContext2 pCodeContext) { | |
36 throw new NotImplementedException(); | |
37 } | |
38 | |
39 public int SetNextStatement(IDebugStackFrame2 pStackFrame, | |
40 IDebugCodeContext2 pCodeContext) { | |
41 throw new NotImplementedException(); | |
42 } | |
43 | |
44 public int GetThreadId(out uint pdwThreadId) { | |
45 throw new NotImplementedException(); | |
46 } | |
47 | |
48 public int Suspend(out uint pdwSuspendCount) { | |
49 throw new NotImplementedException(); | |
50 } | |
51 | |
52 public int Resume(out uint pdwSuspendCount) { | |
53 throw new NotImplementedException(); | |
54 } | |
55 | |
56 public int GetThreadProperties(enum_THREADPROPERTY_FIELDS dwFields, | |
57 THREADPROPERTIES[] ptp) { | |
58 throw new NotImplementedException(); | |
59 } | |
60 | |
61 public int GetLogicalThread(IDebugStackFrame2 pStackFrame, | |
62 out IDebugLogicalThread2 ppLogicalThread) { | |
63 throw new NotImplementedException(); | |
64 } | |
65 | |
66 #endregion | |
67 } | |
68 } | |
OLD | NEW |