Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Function/BNGetMemoryRegions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ internal static extern IntPtr BNGetMemoryRegions(
IntPtr view ,

// size_t* count
IntPtr count
out UIntPtr count
);
}
}
2 changes: 1 addition & 1 deletion Function/BNGetResolvedMemoryRanges.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ internal static extern IntPtr BNGetResolvedMemoryRanges(
IntPtr view ,

// size_t* count
IntPtr count
out UIntPtr count
);
}
}
5 changes: 5 additions & 0 deletions Handle/BNBinaryView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5884,6 +5884,11 @@ public bool MemoryMapActivated
}
}

public MemoryMap MemoryMap
{
get { return new MemoryMap(this); }
}

public bool AddMemoryRegion(
string name,
ulong start,
Expand Down
Loading
Loading