From 9ebdcab1096acacffc3509888219d28a4c28a57d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jonas=20=C3=85dahl?= Date: Thu, 8 Oct 2015 11:00:54 +0800 Subject: [PATCH] scanner: Generate 'since' macros for requests as well MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We already generate WL_[INTERFACE]_[REQUEST]_SINCE_VERSION macros for events in the server protocol headers. Lets do the same for requests in the client protocol headers as well. Signed-off-by: Jonas Ådahl Reviewed-by: David FORT Reviewed-by: Daniel Stone --- src/scanner.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scanner.c b/src/scanner.c index 5504fce..f456aa5 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -1270,6 +1270,7 @@ emit_header(struct protocol *protocol, enum side side) } else { emit_structs(&i->event_list, i, side); emit_opcodes(&i->request_list, i); + emit_opcode_versions(&i->request_list, i); emit_stubs(&i->request_list, i); } -- 2.7.4