-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #326 from Washi1337/feature/pdb-meta-streams
PDB Info and DBI streams
- Loading branch information
Showing
23 changed files
with
2,346 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
using System; | ||
|
||
namespace AsmResolver.Symbols.Pdb.Metadata.Dbi; | ||
|
||
/// <summary> | ||
/// Provides members defining all attributes that can be assigned to a single DBI stream. | ||
/// </summary> | ||
[Flags] | ||
public enum DbiAttributes : ushort | ||
{ | ||
/// <summary> | ||
/// Indicates no attributes were assigned. | ||
/// </summary> | ||
None = 0, | ||
|
||
/// <summary> | ||
/// Indicates the program was linked in an incremental manner. | ||
/// </summary> | ||
IncrementallyLinked = 1, | ||
|
||
/// <summary> | ||
/// Indicates private symbols were stripped from the PDB file. | ||
/// </summary> | ||
PrivateSymbolsStripped = 2, | ||
|
||
/// <summary> | ||
/// Indicates the program was linked using link.exe with the undocumented <c>/DEBUG:CTYPES</c> flag. | ||
/// </summary> | ||
HasConflictingTypes = 4, | ||
} |
Oops, something went wrong.