private static bool IsSteamFile86(string file) { Steamless.Unpacker.Variant31.x86.Main m = new Steamless.Unpacker.Variant31.x86.Main(); m.Initialize(m_LoggingService); if (m.CanProcessFile(file)) { return(true); } else { return(false); } }
private static bool ProcessSteamFile86(string file) { SteamlessOptions s = new SteamlessOptions { VerboseOutput = false, KeepBindSection = false, DumpPayloadToDisk = false, DumpSteamDrmpToDisk = false }; Steamless.Unpacker.Variant31.x86.Main m = new Steamless.Unpacker.Variant31.x86.Main(); m.Initialize(m_LoggingService); if (m.ProcessFile(file, s)) { return(true); } else { return(false); } }