示例#1
0
 /// <summary>
 /// Add a symbol to the symbol map which defines the area of the binary between the two emitted symbols.
 /// This allows relocations (both position and size) to regions of the image. Both nodes must be in the
 /// same section and firstNode must be emitted before secondNode.
 /// </summary>
 public void AddSymbolForRange(ISymbolNode symbol, ISymbolNode firstNode, ISymbolNode secondNode)
 {
     _sectionBuilder.AddSymbolForRange(symbol, firstNode, secondNode);
 }