11 lines
289 B
Django/Jinja
11 lines
289 B
Django/Jinja
{# SPDX-License-Identifier: GPL-2.0 #}
|
|
{% if annotate %}
|
|
/* member {{ name }} (basic) */
|
|
{% endif %}
|
|
{% if type in pass_by_reference %}
|
|
if (!xdrgen_encode_{{ type }}(xdr, &value->{{ name }}))
|
|
{% else %}
|
|
if (!xdrgen_encode_{{ type }}(xdr, value->{{ name }}))
|
|
{% endif %}
|
|
return false;
|