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