Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 1015 of file header.c.
Referenced by write_header_stmts().
{ const char *callconv = get_attrp(fun->type->attrs, ATTR_CALLCONV); if (!callconv) callconv = "__cdecl"; /* FIXME: do we need to handle call_as? */ write_type_decl_left(header, type_function_get_rettype(fun->type)); fprintf(header, " %s ", callconv); fprintf(header, "%s%s(\n", prefix, get_name(fun)); if (type_get_function_args(fun->type)) write_args(header, type_get_function_args(fun->type), iface->name, 0, TRUE); else fprintf(header, " void"); fprintf(header, ");\n\n"); }