| 77 | } |
| 78 | |
| 79 | void RemoteDebuggerClient::SendResourceRemovedHint(ResourceType Type, ResourcePoolType PoolType, const char* Name) |
| 80 | { |
| 81 | shared_ptr<Value> tMessage = make_shared<Value>(ValueType::Dictionary); |
| 82 | tMessage->VDict["type"] = make_shared<Value>(static_cast<int>(Type)); |
| 83 | tMessage->VDict["pool"] = make_shared<Value>(static_cast<int>(PoolType)); |
| 84 | tMessage->VDict["name"] = make_shared<Value>(Name); |
| 85 | |
| 86 | sendUdpMessage(UdpMessageType::ResourceRemoved, tMessage); |
| 87 | } |
| 88 | |
| 89 | void RemoteDebuggerClient::SendResourceClearedHint(ResourcePoolType PoolType) |
| 90 | { |
nothing calls this directly
no outgoing calls
no test coverage detected