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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbevain <jbevain@gmail.com>2010-04-12 11:19:07 +0400
committerjbevain <jbevain@gmail.com>2010-04-12 11:19:07 +0400
commit714ac9e6de3606a1f71966ff1684d964d8ae1334 (patch)
tree1a4d285f4603c8733b1f439acdf66fbc4d40eea5 /symbols/pdb/Microsoft.Cci.Pdb/PdbLine.cs
initial commit
Diffstat (limited to 'symbols/pdb/Microsoft.Cci.Pdb/PdbLine.cs')
-rw-r--r--symbols/pdb/Microsoft.Cci.Pdb/PdbLine.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/symbols/pdb/Microsoft.Cci.Pdb/PdbLine.cs b/symbols/pdb/Microsoft.Cci.Pdb/PdbLine.cs
new file mode 100644
index 0000000..78eb9d6
--- /dev/null
+++ b/symbols/pdb/Microsoft.Cci.Pdb/PdbLine.cs
@@ -0,0 +1,24 @@
+//-----------------------------------------------------------------------------
+//
+// Copyright (C) Microsoft Corporation. All Rights Reserved.
+//
+//-----------------------------------------------------------------------------
+using System;
+
+namespace Microsoft.Cci.Pdb {
+ internal struct PdbLine {
+ internal uint offset;
+ internal uint lineBegin;
+ internal uint lineEnd;
+ internal ushort colBegin;
+ internal ushort colEnd;
+
+ internal PdbLine(uint offset, uint lineBegin, ushort colBegin, uint lineEnd, ushort colEnd) {
+ this.offset = offset;
+ this.lineBegin = lineBegin;
+ this.colBegin = colBegin;
+ this.lineEnd = lineEnd;
+ this.colEnd = colEnd;
+ }
+ }
+}