Show / Hide Table of Contents

Class AdditionalImport

Additional import used to add new imports to the PE file.

Inheritance
System.Object
AdditionalImport
Namespace: PeNet
Assembly: PeNet.dll
Syntax
public class AdditionalImport : object

Constructors

| Improve this Doc View Source

AdditionalImport(String, List<String>)

Create new instance.

Declaration
public AdditionalImport(string module, List<string> funcs)
Parameters
Type Name Description
System.String module

Module name to add the imports from, e.g. "kernel32.dll" or "HAL.dll".

List<System.String> funcs

List with functions names to import from the module.

Properties

| Improve this Doc View Source

Functions

List with functions names to import from the module.

Declaration
public List<string> Functions { get; }
Property Value
Type Description
List<System.String>
| Improve this Doc View Source

Module

Module name to add the imports from, e.g. "kernel32.dll" or "HAL.dll".

Declaration
public string Module { get; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX