17 lines
320 B
C#
17 lines
320 B
C#
namespace Microsoft.DiaSymReader;
|
|
|
|
internal static class HResult
|
|
{
|
|
internal const int S_OK = 0;
|
|
|
|
internal const int S_FALSE = 1;
|
|
|
|
internal const int E_NOTIMPL = -2147467263;
|
|
|
|
internal const int E_FAIL = -2147467259;
|
|
|
|
internal const int E_INVALIDARG = -2147024809;
|
|
|
|
internal const int E_UNEXPECTED = -2147418113;
|
|
}
|