OLD | NEW |
| (Empty) |
1 // Copyright 2009 The Native Client Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can | |
3 // be found in the LICENSE file. | |
4 // | |
5 // This file contains code licensed under the Microsoft Public License. | |
6 // | |
7 using System; | |
8 | |
9 namespace Google.MsAd7.BaseImpl { | |
10 /// <summary> | |
11 /// Well-known GUIDs for ActiveDebugger7, copied from the Microsoft debugger | |
12 /// sample at http://code.msdn.microsoft.com/debugenginesample. | |
13 /// </summary> | |
14 class Guids { | |
15 static public Guid guidFilterRegisters { | |
16 get { return _guidFilterRegisters; } | |
17 } | |
18 | |
19 static public Guid guidFilterLocals { | |
20 get { return _guidFilterLocals; } | |
21 } | |
22 | |
23 static public Guid guidFilterAllLocals { | |
24 get { return _guidFilterAllLocals; } | |
25 } | |
26 | |
27 static public Guid guidFilterArgs { | |
28 get { return _guidFilterArgs; } | |
29 } | |
30 | |
31 static public Guid guidFilterLocalsPlusArgs { | |
32 get { return _guidFilterLocalsPlusArgs; } | |
33 } | |
34 | |
35 static public Guid guidFilterAllLocalsPlusArgs { | |
36 get { return _guidFilterAllLocalsPlusArgs; } | |
37 } | |
38 | |
39 // Language guid for C++. Used when the language for a document context or a
stack frame is requested. | |
40 | |
41 static public Guid guidLanguageCpp { | |
42 get { return _guidLanguageCpp; } | |
43 } | |
44 | |
45 #region Private Implementation | |
46 | |
47 static private readonly Guid _guidFilterAllLocals = | |
48 new Guid("196db21f-5f22-45a9-b5a3-32cddb30db06"); | |
49 | |
50 static private readonly Guid _guidFilterAllLocalsPlusArgs = | |
51 new Guid("939729a8-4cb0-4647-9831-7ff465240d5f"); | |
52 | |
53 static private readonly Guid _guidFilterArgs = | |
54 new Guid("804bccea-0475-4ae7-8a46-1862688ab863"); | |
55 | |
56 static private readonly Guid _guidFilterLocals = | |
57 new Guid("b200f725-e725-4c53-b36a-1ec27aef12ef"); | |
58 | |
59 static private readonly Guid _guidFilterLocalsPlusArgs = | |
60 new Guid("e74721bb-10c0-40f5-807f-920d37f95419"); | |
61 | |
62 static private readonly Guid _guidFilterRegisters = | |
63 new Guid("223ae797-bd09-4f28-8241-2763bdc5f713"); | |
64 | |
65 static private readonly Guid _guidLanguageCpp = | |
66 new Guid("3a12d0b7-c26c-11d0-b442-00a0244a1dd2"); | |
67 | |
68 #endregion | |
69 } | |
70 } | |
71 | |
OLD | NEW |