Commit 5d90e60e authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedbg: Added implementation of qSupported request.

parent 6f84b1c6
......@@ -1766,6 +1766,12 @@ static enum packet_return packet_query(struct gdb_context* gdbctx)
case 'S':
if (strncmp(gdbctx->in_packet, "Symbol::", gdbctx->in_packet_len) == 0)
return packet_ok;
if (strncmp(gdbctx->in_packet, "Supported", gdbctx->in_packet_len) == 0)
{
packet_reply_open(gdbctx);
packet_reply_close(gdbctx);
return packet_done;
}
break;
case 'T':
if (gdbctx->in_packet_len > 15 &&
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment