On Fri, 21 Sep 2012 10:31:23 -0600 Eric Blake <ebl...@redhat.com> wrote:
> On 09/21/2012 08:55 AM, Luiz Capitulino wrote: > > This commit fixes the problem by adding hex value support down > > the QMP interface, qmp_send_key(). > > > > > +++ b/qapi-schema.json > > @@ -2588,12 +2588,25 @@ > > 'lf', 'help', 'meta_l', 'meta_r', 'compose' ] } > > > > ## > > +# @KeyValue > > +# > > +# Represents a keyboard key. > > +# > > +# Since: 1.3.0 > > +## > > +{ 'union': 'KeyValue', > > + 'data': { > > + 'hex': 'int', > > Don't you find it a bit odd to name this 'hex', even though it works to > do 'hex':32 as a synonym for 'hex':0x20? Should we instead name it > 'value', since we don't care in what base the value was represented, > only that JSON was able to decode the base into a value? Yes, that's a good point. I'll respin.