2002-11-09 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / Mono.CSharp.Debugger / IMonoBinaryReader.cs
1 //
2 // System.Diagnostics.SymbolStore/IMonoBinaryReader.cs
3 //
4 // Author:
5 //   Martin Baulig (martin@gnome.org)
6 //
7 // (C) 2002 Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System;
11         
12 namespace Mono.CSharp.Debugger
13 {
14         public interface IMonoBinaryReader
15         {
16                 long Position {
17                         get; set;
18                 }
19
20                 int ReadInt32 ();
21
22                 long ReadInt64 ();
23
24                 byte[] ReadBuffer (int size);
25         }
26 }