33 lines
693 B
C#
33 lines
693 B
C#
using System;
|
|
|
|
namespace Microsoft.Win32
|
|
{
|
|
// Token: 0x0200007D RID: 125
|
|
internal class Win32ResultCode
|
|
{
|
|
// Token: 0x0400010E RID: 270
|
|
public const int Success = 0;
|
|
|
|
// Token: 0x0400010F RID: 271
|
|
public const int FileNotFound = 2;
|
|
|
|
// Token: 0x04000110 RID: 272
|
|
public const int AccessDenied = 5;
|
|
|
|
// Token: 0x04000111 RID: 273
|
|
public const int InvalidParameter = 87;
|
|
|
|
// Token: 0x04000112 RID: 274
|
|
public const int MoreData = 234;
|
|
|
|
// Token: 0x04000113 RID: 275
|
|
public const int NetworkPathNotFound = 53;
|
|
|
|
// Token: 0x04000114 RID: 276
|
|
public const int NoMoreEntries = 259;
|
|
|
|
// Token: 0x04000115 RID: 277
|
|
public const int MarkedForDeletion = 1018;
|
|
}
|
|
}
|