diff options
author | Christian Linhart <chris@demorecorder.com> | 2014-09-08 02:29:08 +0200 |
---|---|---|
committer | Christian Linhart <chris@demorecorder.com> | 2014-11-03 11:23:23 +0100 |
commit | fffbd04d6344e2fa82f744935caf4be8a3b18a73 (patch) | |
tree | f2cd26bb16a7be6c16bb76493975acd43603e812 | |
parent | d8c5e82ab26417afc4383ad16ff3e076a6e4434c (diff) |
xcb-doc: add paramref
The first paragraph of the description is loosely based on
a description proposed by Ran Benita.
Message-ID: <1410136150-30254-3-git-send-email-chris@demorecorder.com>
Patch-Thread-Subject: [Xcb] parametrized structs implemented
Patch-Set: ParametrizedStruct
Patch-Number: proto 3/5
Patch-Version: V1
Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
-rw-r--r-- | doc/xml-xcb.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/xml-xcb.txt b/doc/xml-xcb.txt index 01f7678..f8129ea 100644 --- a/doc/xml-xcb.txt +++ b/doc/xml-xcb.txt @@ -298,6 +298,23 @@ Expressions the structure containing this expression. The identifier is the value of the "name" attribute on the referenced field. +<paramref type="type">identifier</paramref> + + A paramref is similar to a fieldref, but it refers to the value of + a field in the context which refers to the struct which contains the paramref. + + So, it refers to a field outside of the structure where it is defined. + This has the following consequences: + * The generator cannot deduce its type. + So, it is mandatory to specify its type. + * The identifier-name must not be used as a field in the structure + which contaons the paramref. + + For an example, see struct "DeviceTimeCoord" and request/reply + "GetDeviceMotionEvents" in xinput.xml, where paramref "num_axes" + in struct DeviceTimeCoord refers to field "num_axes" in + the DeviceTimeCoord reply. + <value>integer</value> The value element represents a literal integer value in an expression. The |