On Fri Jun 6 12:11:29 2025 +0000, Hans Leidekker wrote:
Right I have mostly been ignoring parameterized types, working from IDL snippets rather than our IDL files because that's still a way to go. Would you mind if I address this later?
In that case let's remove the `make_shortname` helper which would not be needed and add something like this to skip p-ifaces in the step1/step2 TYPE_INTERFACE cases:
``` if (type->signature && !strncmp( type->signature, "pinterface", 10 )) { fprintf( stderr, "Ingoring unsupported %s parameterized interface\n", type->name ); break; } ```