13 lines
193 B
C#
13 lines
193 B
C#
using System;
|
|
|
|
namespace Microsoft.DiaSymReader;
|
|
|
|
[Flags]
|
|
internal enum SymUnmanagedWriterCreationOptions
|
|
{
|
|
Default = 0,
|
|
UseAlternativeLoadPath = 2,
|
|
UseComRegistry = 4,
|
|
Deterministic = 8
|
|
}
|