| 5693 | |
| 5694 | |
| 5695 | void SymbolQueue::AddCallback(void* ctxt, BNSymbol* symbol, BNType* type) |
| 5696 | { |
| 5697 | SymbolQueueAddContext* add = (SymbolQueueAddContext*)ctxt; |
| 5698 | Ref<Symbol> apiSymbol = new Symbol(symbol); |
| 5699 | Ref<Type> apiType = new Type(type); |
| 5700 | add->add(apiSymbol, apiType); |
| 5701 | delete add; |
| 5702 | } |
| 5703 | |
| 5704 | |
| 5705 | void SymbolQueue::Append( |