mirror of
https://github.com/justinian/j6-uefi-headers.git
synced 2025-12-10 00:24:32 -08:00
Allow other 'binding' guids for a proto under 'bindings' key
This commit is contained in:
@@ -17,7 +17,13 @@ struct {{ name }};
|
|||||||
|
|
||||||
struct {{ name }}
|
struct {{ name }}
|
||||||
{
|
{
|
||||||
{% if guid %}static constexpr uefi::guid guid{ {{ guid }} };{% endif %}
|
{%- if guid %}
|
||||||
|
static constexpr uefi::guid guid{ {{ guid }} };
|
||||||
|
{%- endif -%}
|
||||||
|
{%- for binding in bindings %}
|
||||||
|
static constexpr uefi::guid {{ binding.name }}{ {{ binding.guid }} };
|
||||||
|
{%- endfor %}
|
||||||
|
|
||||||
{% for method in methods %}
|
{% for method in methods %}
|
||||||
inline uefi::status {{ method.name }}(
|
inline uefi::status {{ method.name }}(
|
||||||
{%- for arg in method.args -%}
|
{%- for arg in method.args -%}
|
||||||
|
|||||||
Reference in New Issue
Block a user