Show / Hide Table of Contents

Class AdditionalImport

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

Inheritance
object
AdditionalImport
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: PeNet
Assembly: PeNet.dll
Syntax
public class AdditionalImport

Constructors

| Edit this page View Source

AdditionalImport(string, List<string>)

Create new instance.

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

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

List<string> funcs

List with functions names to import from the module.

Properties

| Edit this page View Source

Functions

List with functions names to import from the module.

Declaration
public List<string> Functions { get; }
Property Value
Type Description
List<string>
| Edit this page 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
string
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX