Skip to content

Commit

Permalink
Again
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro Hanea committed Feb 18, 2025
1 parent 0ca9b61 commit 65de600
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ public IEnumerable<string> GetDependencies(string nativeLibPath)
continue;
}

if (entry is DynamicEntry<ulong> ulongEntry && stringTable != null)
{
var longIndex = (long)ulongEntry.Value;
yield return stringTable[longIndex];
continue;
}

Console.WriteLine("Entry was of type: " + entry.GetType());
var val = entry switch
{
Expand Down

0 comments on commit 65de600

Please sign in to comment.