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 Google.MsAd7.BaseImpl.TestUtils; | |
9 using Microsoft.VisualStudio.Debugger.Interop; | |
10 | |
11 #endregion | |
12 | |
13 namespace NaClVsx.Package_UnitTestProject { | |
14 class DebugPort2Mock : MockBase, IDebugPort2 { | |
15 #region IDebugPort2 Members | |
16 | |
17 public int GetPortName(out string pbstrName) { | |
18 throw new NotImplementedException(); | |
19 } | |
20 | |
21 public int GetPortId(out Guid pguidPort) { | |
22 throw new NotImplementedException(); | |
23 } | |
24 | |
25 public int GetPortRequest(out IDebugPortRequest2 ppRequest) { | |
26 throw new NotImplementedException(); | |
27 } | |
28 | |
29 public int GetPortSupplier(out IDebugPortSupplier2 ppSupplier) { | |
30 throw new NotImplementedException(); | |
31 } | |
32 | |
33 public int GetProcess(AD_PROCESS_ID ProcessId, out IDebugProcess2 ppProcess)
{ | |
34 throw new NotImplementedException(); | |
35 } | |
36 | |
37 public int EnumProcesses(out IEnumDebugProcesses2 ppEnum) { | |
38 throw new NotImplementedException(); | |
39 } | |
40 | |
41 #endregion | |
42 } | |
43 } | |
OLD | NEW |