Class AdditionalImport
Additional import used to add new imports to the PE file.
Inherited Members
Namespace: PeNet
Assembly: PeNet.dll
Syntax
public class AdditionalImport
Constructors
| Edit this page View SourceAdditionalImport(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 SourceFunctions
List with functions names to import from the module.
Declaration
public List<string> Functions { get; }
Property Value
| Type | Description |
|---|---|
| List<string> |
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 |