Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ISymbolBinder.cs « System.Diagnostics.SymbolStore « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea1779ca15cad8116d9102740ec6279d1608b382 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// System.Diagnostics.SymbolStore.ISymbolBinder
//
// Author:
//   Duco Fijma (duco@lorentz.xs4all.nl)
//
//   (c) 2002 Duco Fijma
// 

namespace System.Diagnostics.SymbolStore
{

public interface ISymbolBinder {

	ISymbolReader GetReader (int importer, string filename, string searchPath);

}

}