Commit b4cea6e4 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedbg: Added support for qAttached query packet.

parent 1ecef824
......@@ -1785,6 +1785,16 @@ static enum packet_return packet_query(struct gdb_context* gdbctx)
return packet_done;
}
break;
case 'A':
if (strncmp(gdbctx->in_packet, "Attached", gdbctx->in_packet_len) == 0)
{
char buf[2];
buf[0] = '1';
buf[1] = 0;
return packet_reply(gdbctx, buf, -1);
}
break;
case 'C':
if (gdbctx->in_packet_len == 1)
{
......
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