39 lines
921 B
C#
39 lines
921 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using Backtrace.Unity.Model.Database;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace Backtrace.Unity.Interfaces
|
|
{
|
|
// Token: 0x02000044 RID: 68
|
|
[Token(Token = "0x2000030")]
|
|
internal interface IBacktraceDatabaseFileContext
|
|
{
|
|
// Token: 0x0600021F RID: 543
|
|
[Token(Token = "0x60001C9")]
|
|
[Address(Slot = "0")]
|
|
IEnumerable<FileInfo> GetRecords();
|
|
|
|
// Token: 0x06000220 RID: 544
|
|
[Token(Token = "0x60001CA")]
|
|
[Address(Slot = "1")]
|
|
IEnumerable<FileInfo> GetAll();
|
|
|
|
// Token: 0x06000221 RID: 545
|
|
[Token(Token = "0x60001CB")]
|
|
[Address(Slot = "2")]
|
|
bool ValidFileConsistency();
|
|
|
|
// Token: 0x06000222 RID: 546
|
|
[Token(Token = "0x60001CC")]
|
|
[Address(Slot = "3")]
|
|
void RemoveOrphaned(IEnumerable<BacktraceDatabaseRecord> existingRecords);
|
|
|
|
// Token: 0x06000223 RID: 547
|
|
[Token(Token = "0x60001CD")]
|
|
[Address(Slot = "4")]
|
|
void Clear();
|
|
}
|
|
}
|