Files
BinaryObjectScanner/BinaryObjectScanner.Models/PortableExecutable/HintNameTableEntry.cs

24 lines
881 B
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.PortableExecutable
2022-11-05 21:49:34 -07:00
{
/// <summary>
/// One hint/name table suffices for the entire import section.
/// </summary>
/// <see href="https://learn.microsoft.com/en-us/windows/win32/debug/pe-format"/>
2022-12-27 17:12:55 -08:00
public sealed class HintNameTableEntry
2022-11-05 21:49:34 -07:00
{
/// <summary>
/// An index into the export name pointer table. A match is attempted first
/// with this value. If it fails, a binary search is performed on the DLL's
/// export name pointer table.
/// </summary>
public ushort Hint;
/// <summary>
/// An ASCII string that contains the name to import. This is the string that
/// must be matched to the public name in the DLL. This string is case sensitive
/// and terminated by a null byte.
/// </summary>
2022-11-10 11:58:46 -08:00
public string Name;
2022-11-05 21:49:34 -07:00
}
}