Skip to content

Commit

Permalink
ctaggart#35 change namespace to SourceLink.SymbolStore
Browse files Browse the repository at this point in the history
make interfaces public
  • Loading branch information
Cameron Taggart authored and Chet Husk committed Nov 25, 2014
1 parent db259b5 commit 6f2b3dd
Show file tree
Hide file tree
Showing 16 changed files with 28 additions and 29 deletions.
2 changes: 1 addition & 1 deletion SymbolStore/HResults.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Copyright (C) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------

namespace Microsoft.Samples.Debugging.CorDebug
namespace SourceLink.SymbolStore
{
public enum HResult
{
Expand Down
2 changes: 1 addition & 1 deletion SymbolStore/ISymConstant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand Down
2 changes: 1 addition & 1 deletion SymbolStore/ISymENCUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand Down
2 changes: 1 addition & 1 deletion SymbolStore/ISymEncMethod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand Down
2 changes: 1 addition & 1 deletion SymbolStore/ISymReader2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand Down
2 changes: 1 addition & 1 deletion SymbolStore/ISymScope2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand Down
2 changes: 1 addition & 1 deletion SymbolStore/ISymSearchInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand Down
4 changes: 2 additions & 2 deletions SymbolStore/SymConstant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand All @@ -23,7 +23,7 @@ namespace Microsoft.Samples.Debugging.CorSymbolStore
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedConstant
public interface ISymUnmanagedConstant
{
void GetName(int cchName,
out int pcchName,
Expand Down
4 changes: 2 additions & 2 deletions SymbolStore/SymDocument.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand All @@ -21,7 +21,7 @@ namespace Microsoft.Samples.Debugging.CorSymbolStore
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedDocument
public interface ISymUnmanagedDocument
{
void GetURL(int cchUrl,
out int pcchUrl,
Expand Down
4 changes: 2 additions & 2 deletions SymbolStore/SymMethod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand Down Expand Up @@ -60,7 +60,7 @@ void GetSequencePoints(int cPoints,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymENCUnmanagedMethod
public interface ISymENCUnmanagedMethod
{
void GetFileNameFromOffset(int dwOffset,
int cchName,
Expand Down
4 changes: 2 additions & 2 deletions SymbolStore/SymNamespace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand All @@ -23,7 +23,7 @@ namespace Microsoft.Samples.Debugging.CorSymbolStore
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedNamespace
public interface ISymUnmanagedNamespace
{
void GetName(int cchName,
out int pcchName,
Expand Down
11 changes: 5 additions & 6 deletions SymbolStore/SymReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;
using Microsoft.Samples.Debugging.CorDebug;

// Interface does not need to be marked with the serializable attribute
using System;
Expand All @@ -23,7 +22,7 @@ namespace Microsoft.Samples.Debugging.CorSymbolStore
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedReader
public interface ISymUnmanagedReader
{
void GetDocument([MarshalAs(UnmanagedType.LPWStr)] String url,
Guid language,
Expand Down Expand Up @@ -113,7 +112,7 @@ void GetMethodVersion(ISymUnmanagedMethod pMethod,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedEncUpdate
public interface ISymUnmanagedEncUpdate
{

void UpdateSymbolStore2(IStream stream,
Expand All @@ -136,7 +135,7 @@ void GetLocalVariables(SymbolToken mdMethodToken,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedReaderSymbolSearchInfo
public interface ISymUnmanagedReaderSymbolSearchInfo
{
void GetSymbolSearchInfoCount(out int pcSearchInfo);

Expand All @@ -152,7 +151,7 @@ void GetSymbolSearchInfo(int cSearchInfo,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedDispose
public interface ISymUnmanagedDispose
{
void Destroy();
}
Expand Down
6 changes: 3 additions & 3 deletions SymbolStore/SymScope.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand All @@ -22,7 +22,7 @@ namespace Microsoft.Samples.Debugging.CorSymbolStore
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedScope
public interface ISymUnmanagedScope
{
void GetMethod([MarshalAs(UnmanagedType.Interface)] out ISymUnmanagedMethod pRetVal);

Expand Down Expand Up @@ -53,7 +53,7 @@ void GetNamespaces(int cNameSpaces,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedScope2 : ISymUnmanagedScope
public interface ISymUnmanagedScope2 : ISymUnmanagedScope
{
// ISymUnmanagedScope methods (need to define the base interface methods also, per COM interop requirements)
new void GetMethod([MarshalAs(UnmanagedType.Interface)] out ISymUnmanagedMethod pRetVal);
Expand Down
4 changes: 2 additions & 2 deletions SymbolStore/SymSearchInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand All @@ -22,7 +22,7 @@ namespace Microsoft.Samples.Debugging.CorSymbolStore
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedSymbolSearchInfo
public interface ISymUnmanagedSymbolSearchInfo
{
void GetSearchPathLength(out int pcchPath);

Expand Down
4 changes: 2 additions & 2 deletions SymbolStore/SymVariable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


// These interfaces serve as an extension to the BCL's SymbolStore interfaces.
namespace Microsoft.Samples.Debugging.CorSymbolStore
namespace SourceLink.SymbolStore
{
using System.Diagnostics.SymbolStore;

Expand All @@ -22,7 +22,7 @@ namespace Microsoft.Samples.Debugging.CorSymbolStore
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
ComVisible(false)
]
internal interface ISymUnmanagedVariable
public interface ISymUnmanagedVariable
{
void GetName(int cchName,
out int pcchName,
Expand Down
2 changes: 1 addition & 1 deletion SymbolStore/SymbolStore.nuspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata minClientVersion="2.7">
<id>SourceLink.Debugging</id>
<id>SourceLink.SymbolStore</id>
<version>0.0.0</version>
<title>SourceLink</title>
<authors>Cameron Taggart</authors>
Expand Down

0 comments on commit 6f2b3dd

Please sign in to comment.