mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-16 13:55:29 +00:00
21 lines
593 B
C#
21 lines
593 B
C#
using System.Runtime.InteropServices;
|
|
|
|
/// <remarks>
|
|
/// Information sourced from https://docwiki.embarcadero.com/Libraries/Alexandria/en/System.PackageUnitEntry
|
|
/// </remarks>
|
|
namespace SabreTools.Models.Delphi
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public class PackageUnitEntry
|
|
{
|
|
/// <remarks>
|
|
/// System-dependent pointer type, assumed to be encoded for x86
|
|
/// </remarks>
|
|
public uint Init;
|
|
|
|
/// <remarks>
|
|
/// System-dependent pointer type, assumed to be encoded for x86
|
|
/// </remarks>
|
|
public uint FInit;
|
|
}
|
|
} |