wabbajack/VirtualFileSystem.Test/Program.cs

20 lines
560 B
C#
Raw Normal View History

using System;
using Wabbajack.Common;
2019-09-26 03:18:36 +00:00
using Microsoft.Win32;
namespace VirtualFileSystem.Test
{
2019-09-14 04:35:42 +00:00
internal class Program
{
2019-09-14 04:35:42 +00:00
private static void Main(string[] args)
{
2019-09-26 03:18:36 +00:00
var result = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\7-zip\");
Utils.SetLoggerFn(s => Console.WriteLine(s));
Utils.SetStatusFn((s, i) => Console.Write(s + "\r"));
2019-09-14 04:35:42 +00:00
WorkQueue.Init((a, b, c) => { },
(a, b) => { });
VFS.VirtualFileSystem.VFS.AddRoot(@"D:\tmp\archivetests");
}
}
2019-09-14 04:35:42 +00:00
}