public bool EraseHeaders(string processName, byte[] dllBytes) { var extensionWrapper = new ExtensionWrapper(processName, dllBytes); return(extensionWrapper.EraseHeaders()); }
public bool EraseHeaders(int processId, byte[] dllBytes) { var extensionWrapper = new ExtensionWrapper(processId, dllBytes); return(extensionWrapper.EraseHeaders()); }
public bool EraseHeaders(int processId, string dllPath) { var extensionWrapper = new ExtensionWrapper(processId, dllPath); return(extensionWrapper.EraseHeaders()); }