2014-08-13 10:39:27 +01:00
|
|
|
// Copyright (c) Microsoft. All rights reserved.
|
2019-12-10 18:00:56 +00:00
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
2014-08-13 10:39:27 +01:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Microsoft.Cci.Pdb {
|
|
|
|
internal class PdbSource {
|
|
|
|
//internal uint index;
|
|
|
|
internal string name;
|
|
|
|
internal Guid doctype;
|
|
|
|
internal Guid language;
|
|
|
|
internal Guid vendor;
|
2019-12-10 18:00:56 +00:00
|
|
|
internal Guid checksumAlgorithm;
|
|
|
|
internal byte[] checksum;
|
2014-08-13 10:39:27 +01:00
|
|
|
|
2019-12-10 18:00:56 +00:00
|
|
|
internal PdbSource(/*uint index, */string name, Guid doctype, Guid language, Guid vendor, Guid checksumAlgorithm, byte[] checksum) {
|
2014-08-13 10:39:27 +01:00
|
|
|
//this.index = index;
|
|
|
|
this.name = name;
|
|
|
|
this.doctype = doctype;
|
|
|
|
this.language = language;
|
|
|
|
this.vendor = vendor;
|
2019-12-10 18:00:56 +00:00
|
|
|
this.checksumAlgorithm = checksumAlgorithm;
|
|
|
|
this.checksum = checksum;
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|