For the complete documentation index, see llms.txt. This page is also available as Markdown.

IMAGE_RUNTIME_FUNCTION_ENTRY

public struct IMAGE_RUNTIME_FUNCTION_ENTRY
{
	public uint BeginAddress;
	public uint EndAddress;
	public Anonymous Anonymous;

	[StructLayout(LayoutKind.Explicit)]
	public struct Anonymous
	{
		[FieldOffset(0)]
		public uint UnwindInfoAddress;

		[FieldOffset(0)]
		public uint UnwindData;
	}
}

Last updated