mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 13:46:03 +00:00
20 lines
524 B
C#
20 lines
524 B
C#
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using BurnOutSharp.ExecutableType.Microsoft.PE;
|
|
using BurnOutSharp.Interfaces;
|
|
using BurnOutSharp.Matching;
|
|
using BurnOutSharp.Tools;
|
|
|
|
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
/// <summary>
|
|
/// This is a placeholder SafeCast (sub-Macrovision) specific functionality
|
|
/// </summary>
|
|
public partial class Macrovision
|
|
{
|
|
// TODO: Add methods for specific PE, path, and version checks here
|
|
}
|
|
}
|