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 SourceAdditionalImport(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 SourceFunctions
List with functions names to import from the module.
Declaration
public List<string> Functions { get; }
Property Value
Type | Description |
---|---|
List<System.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 |
---|---|
System.String |