4 * Copyright 2002 Ove Kaaven
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
39 static int indentation = 0;
41 static void indent(FILE *h, int delta)
44 if (delta < 0) indentation += delta;
45 for (c=0; c<indentation; c++) fprintf(h, " ");
46 if (delta > 0) indentation += delta;
49 int is_attr(const attr_t *a, enum attr_type t)
52 if (a->type == t) return 1;
58 void *get_attrp(const attr_t *a, enum attr_type t)
61 if (a->type == t) return a->u.pval;
67 unsigned long get_attrv(const attr_t *a, enum attr_type t)
70 if (a->type == t) return a->u.ival;
76 int is_void(const type_t *t, const var_t *v)
78 if (v && v->ptr_level) return 0;
79 if (!t->type && !t->ref) return 1;
83 void write_guid(FILE *f, const char *guid_prefix, const char *name, const UUID *uuid)
86 fprintf(f, "DEFINE_GUID(%s_%s, 0x%08lx, 0x%04x, 0x%04x, 0x%02x,0x%02x, 0x%02x,"
87 "0x%02x,0x%02x,0x%02x,0x%02x,0x%02x);\n",
88 guid_prefix, name, uuid->Data1, uuid->Data2, uuid->Data3, uuid->Data4[0],
89 uuid->Data4[1], uuid->Data4[2], uuid->Data4[3], uuid->Data4[4], uuid->Data4[5],
90 uuid->Data4[6], uuid->Data4[7]);
93 static void write_pident(FILE *h, const var_t *v)
96 for (c=0; c<v->ptr_level; c++) {
99 if (v->name) fprintf(h, "%s", v->name);
102 void write_name(FILE *h, const var_t *v)
104 if (is_attr( v->attrs, ATTR_PROPGET ))
106 else if (is_attr( v->attrs, ATTR_PROPPUT ))
108 else if (is_attr( v->attrs, ATTR_PROPPUTREF ))
109 fprintf(h, "putref_" );
110 fprintf(h, "%s", v->name);
113 const char* get_name(const var_t *v)
118 void write_array(FILE *h, const expr_t *v, int field)
121 while (NEXT_LINK(v)) v = NEXT_LINK(v);
125 fprintf(h, "%ld", v->cval); /* statically sized array */
127 if (field) fprintf(h, "1"); /* dynamically sized array */
135 static void write_field(FILE *h, var_t *v)
140 write_type(h, v->type, NULL, v->tname);
146 /* not all C/C++ compilers support anonymous structs and unions */
147 switch (v->type->type) {
149 case RPC_FC_CVSTRUCT:
150 case RPC_FC_CPSTRUCT:
153 case RPC_FC_BOGUS_STRUCT:
154 case RPC_FC_ENCAPSULATED_UNION:
155 fprintf(h, " DUMMYSTRUCTNAME");
157 case RPC_FC_NON_ENCAPSULATED_UNION:
158 fprintf(h, " DUMMYUNIONNAME");
165 write_array(h, v->array, 1);
170 static void write_fields(FILE *h, var_t *v)
174 while (NEXT_LINK(v)) v = NEXT_LINK(v);
177 if (v == first) break;
182 static void write_enums(FILE *h, var_t *v)
185 while (NEXT_LINK(v)) v = NEXT_LINK(v);
192 write_expr(h, v->eval, 0);
202 void write_type(FILE *h, type_t *t, const var_t *v, const char *n)
206 if (n) fprintf(h, "%s", n);
208 if (t->is_const) fprintf(h, "const ");
210 if (t->sign > 0) fprintf(h, "signed ");
211 else if (t->sign < 0) fprintf(h, "unsigned ");
214 if (t->ref) fprintf(h, t->ref->name);
215 else fprintf(h, "byte");
218 if (t->ref) fprintf(h, t->ref->name);
219 else fprintf(h, "char");
226 if (t->ref) fprintf(h, t->ref->name);
227 else fprintf(h, "small");
231 if (t->ref) fprintf(h, t->ref->name);
232 else fprintf(h, "short");
236 if (t->ref) fprintf(h, t->ref->name);
237 else fprintf(h, "long");
240 if (t->ref) fprintf(h, t->ref->name);
241 else fprintf(h, "hyper");
247 fprintf(h, "double");
251 if (t->defined && !t->written && !t->ignore) {
252 if (t->name) fprintf(h, "enum %s {\n", t->name);
253 else fprintf(h, "enum {\n");
256 write_enums(h, t->fields);
260 else fprintf(h, "enum %s", t->name);
262 case RPC_FC_ERROR_STATUS_T:
263 if (t->ref) fprintf(h, t->ref->name);
264 else fprintf(h, "error_status_t");
266 case RPC_FC_BIND_PRIMITIVE:
267 if (t->ref) fprintf(h, t->ref->name);
268 else fprintf(h, "handle_t");
271 case RPC_FC_CVSTRUCT:
272 case RPC_FC_CPSTRUCT:
275 case RPC_FC_BOGUS_STRUCT:
276 case RPC_FC_ENCAPSULATED_UNION:
277 if (t->defined && !t->written && !t->ignore) {
278 if (t->name) fprintf(h, "struct %s {\n", t->name);
279 else fprintf(h, "struct {\n");
282 write_fields(h, t->fields);
286 else fprintf(h, "struct %s", t->name);
288 case RPC_FC_NON_ENCAPSULATED_UNION:
289 if (t->defined && !t->written && !t->ignore) {
290 if (t->name) fprintf(h, "union %s {\n", t->name);
291 else fprintf(h, "union {\n");
294 write_fields(h, t->fields);
298 else fprintf(h, "union %s", t->name);
301 if (t->ref) write_type(h, t->ref, NULL, t->name);
305 fprintf(h, "(unknown-type:%d)", t->type);
310 write_type(h, t->ref, NULL, t->name);
312 else fprintf(h, "void");
316 for (c=0; c<v->ptr_level; c++) {
325 struct user_type *next;
329 static struct user_type *user_type_list;
331 static int user_type_registered(const char *name)
333 struct user_type *ut;
334 for (ut = user_type_list; ut; ut = ut->next)
335 if (!strcmp(name, ut->name))
340 static void check_for_user_types(const var_t *v)
343 type_t *type = v->type;
344 const char *name = v->tname;
345 for (type = v->type; type; type = type->ref) {
346 if (type->user_types_registered) continue;
347 type->user_types_registered = 1;
348 if (is_attr(type->attrs, ATTR_WIREMARSHAL)) {
349 if (!user_type_registered(name))
351 struct user_type *ut = xmalloc(sizeof(struct user_type) + strlen(name));
352 strcpy(ut->name, name);
353 ut->next = user_type_list;
356 /* don't carry on parsing fields within this type as we are already
357 * using a wire marshaled type */
360 else if (type->fields)
362 const var_t *fields = type->fields;
363 while (NEXT_LINK(fields)) fields = NEXT_LINK(fields);
364 check_for_user_types(fields);
366 /* the wire_marshal attribute is always at least one reference away
367 * from the name of the type, so update it after the rest of the
368 * processing above */
369 if (type->name) name = type->name;
375 void write_user_types(void)
377 struct user_type *ut;
378 for (ut = user_type_list; ut; ut = ut->next)
380 const char *name = ut->name;
381 fprintf(header, "unsigned long __RPC_USER %s_UserSize (unsigned long *, unsigned long, %s *);\n", name, name);
382 fprintf(header, "unsigned char * __RPC_USER %s_UserMarshal (unsigned long *, unsigned char *, %s *);\n", name, name);
383 fprintf(header, "unsigned char * __RPC_USER %s_UserUnmarshal(unsigned long *, unsigned char *, %s *);\n", name, name);
384 fprintf(header, "void __RPC_USER %s_UserFree (unsigned long *, %s *);\n", name, name);
388 void write_typedef(type_t *type, const var_t *names)
390 const char *tname = names->tname;
392 while (NEXT_LINK(names)) names = NEXT_LINK(names);
394 fprintf(header, "typedef ");
395 write_type(header, type, NULL, tname);
396 fprintf(header, " ");
398 write_pident(header, names);
399 if (PREV_LINK(names))
400 fprintf(header, ", ");
401 names = PREV_LINK(names);
403 fprintf(header, ";\n");
406 void write_expr(FILE *h, const expr_t *e, int brackets)
412 fprintf(h, "%ld", e->u.lval);
415 fprintf(h, "0x%lx", e->u.lval);
423 case EXPR_IDENTIFIER:
424 fprintf(h, "%s", e->u.sval);
428 write_expr(h, e->ref, 1);
432 write_expr(h, e->ref, 1);
436 write_expr(h, e->ref, 1);
440 write_type(h, e->u.tref->ref, NULL, e->u.tref->name);
442 write_expr(h, e->ref, 1);
445 fprintf(h, "sizeof(");
446 write_type(h, e->u.tref->ref, NULL, e->u.tref->name);
457 if (brackets) fprintf(h, "(");
458 write_expr(h, e->ref, 1);
460 case EXPR_SHL: fprintf(h, " << "); break;
461 case EXPR_SHR: fprintf(h, " >> "); break;
462 case EXPR_MUL: fprintf(h, " * "); break;
463 case EXPR_DIV: fprintf(h, " / "); break;
464 case EXPR_ADD: fprintf(h, " + "); break;
465 case EXPR_SUB: fprintf(h, " - "); break;
466 case EXPR_AND: fprintf(h, " & "); break;
467 case EXPR_OR: fprintf(h, " | "); break;
470 write_expr(h, e->u.ext, 1);
471 if (brackets) fprintf(h, ")");
474 if (brackets) fprintf(h, "(");
475 write_expr(h, e->ref, 1);
477 write_expr(h, e->u.ext, 1);
479 write_expr(h, e->ext2, 1);
480 if (brackets) fprintf(h, ")");
485 void write_constdef(const var_t *v)
487 fprintf(header, "#define %s (", get_name(v));
488 write_expr(header, v->eval, 0);
489 fprintf(header, ")\n\n");
492 void write_externdef(const var_t *v)
494 fprintf(header, "extern const ");
495 write_type(header, v->type, NULL, v->tname);
497 fprintf(header, " ");
498 write_pident(header, v);
500 fprintf(header, ";\n\n");
503 void write_library(const char *name, const attr_t *attr) {
504 const UUID *uuid = get_attrp(attr, ATTR_UUID);
505 fprintf(header, "\n");
506 write_guid(header, "LIBID", name, uuid);
507 fprintf(header, "\n");
511 const var_t* get_explicit_handle_var(const func_t* func)
519 while (NEXT_LINK(var)) var = NEXT_LINK(var);
522 if (var->type->type == RPC_FC_BIND_PRIMITIVE)
525 var = PREV_LINK(var);
531 int has_out_arg_or_return(const func_t *func)
535 if (!is_void(func->def->type, NULL))
542 while (NEXT_LINK(var)) var = NEXT_LINK(var);
545 if (is_attr(var->attrs, ATTR_OUT))
548 var = PREV_LINK(var);
554 /********** INTERFACES **********/
556 int is_object(const attr_t *a)
559 if (a->type == ATTR_OBJECT || a->type == ATTR_ODL) return 1;
565 int is_local(const attr_t *a)
567 return is_attr(a, ATTR_LOCAL);
570 const var_t *is_callas(const attr_t *a)
572 return get_attrp(a, ATTR_CALLAS);
575 static void write_method_macro(const type_t *iface, const char *name)
577 func_t *cur = iface->funcs;
579 if (iface->ref) write_method_macro(iface->ref, name);
582 while (NEXT_LINK(cur)) cur = NEXT_LINK(cur);
584 fprintf(header, "/*** %s methods ***/\n", iface->name);
586 var_t *def = cur->def;
587 if (!is_callas(def->attrs)) {
588 var_t *arg = cur->args;
592 arg = NEXT_LINK(arg);
596 fprintf(header, "#define %s_", name);
597 write_name(header,def);
598 fprintf(header, "(p");
599 for (c=0; c<argc; c++)
600 fprintf(header, ",%c", c+'a');
601 fprintf(header, ") ");
603 fprintf(header, "(p)->lpVtbl->");
604 write_name(header, def);
605 fprintf(header, "(p");
606 for (c=0; c<argc; c++)
607 fprintf(header, ",%c", c+'a');
608 fprintf(header, ")\n");
610 cur = PREV_LINK(cur);
614 void write_args(FILE *h, var_t *arg, const char *name, int method, int do_indent)
618 while (NEXT_LINK(arg))
619 arg = NEXT_LINK(arg);
627 fprintf(h, "%s* This", name);
637 else fprintf(h, ",");
639 write_type(h, arg->type, arg, arg->tname);
642 fprintf(h, " (STDMETHODCALLTYPE *");
645 write_args(h, arg->args, NULL, 0, FALSE);
653 write_array(h, arg->array, 0);
654 arg = PREV_LINK(arg);
657 if (do_indent) indentation--;
660 static void write_cpp_method_def(const type_t *iface)
662 func_t *cur = iface->funcs;
665 while (NEXT_LINK(cur)) cur = NEXT_LINK(cur);
667 var_t *def = cur->def;
668 if (!is_callas(def->attrs)) {
670 fprintf(header, "virtual ");
671 write_type(header, def->type, def, def->tname);
672 fprintf(header, " STDMETHODCALLTYPE ");
673 write_name(header, def);
674 fprintf(header, "(\n");
675 write_args(header, cur->args, iface->name, 2, TRUE);
676 fprintf(header, ") = 0;\n");
677 fprintf(header, "\n");
679 cur = PREV_LINK(cur);
683 static void do_write_c_method_def(const type_t *iface, const char *name)
685 const func_t *cur = iface->funcs;
687 if (iface->ref) do_write_c_method_def(iface->ref, name);
690 while (NEXT_LINK(cur)) cur = NEXT_LINK(cur);
692 fprintf(header, "/*** %s methods ***/\n", iface->name);
694 const var_t *def = cur->def;
695 if (!is_callas(def->attrs)) {
697 write_type(header, def->type, def, def->tname);
698 fprintf(header, " (STDMETHODCALLTYPE *");
699 write_name(header, def);
700 fprintf(header, ")(\n");
701 write_args(header, cur->args, name, 1, TRUE);
702 fprintf(header, ");\n");
703 fprintf(header, "\n");
705 cur = PREV_LINK(cur);
709 static void write_c_method_def(const type_t *iface)
711 do_write_c_method_def(iface, iface->name);
714 static void write_c_disp_method_def(const type_t *iface)
716 do_write_c_method_def(iface->ref, iface->name);
719 static void write_method_proto(const type_t *iface)
721 const func_t *cur = iface->funcs;
724 while (NEXT_LINK(cur)) cur = NEXT_LINK(cur);
726 const var_t *def = cur->def;
727 const var_t *cas = is_callas(def->attrs);
729 if (!is_local(def->attrs)) {
730 /* proxy prototype */
731 write_type(header, def->type, def, def->tname);
732 fprintf(header, " CALLBACK %s_", iface->name);
733 write_name(header, def);
734 fprintf(header, "_Proxy(\n");
735 write_args(header, cur->args, iface->name, 1, TRUE);
736 fprintf(header, ");\n");
738 fprintf(header, "void __RPC_STUB %s_", iface->name);
739 write_name(header,def);
740 fprintf(header, "_Stub(\n");
741 fprintf(header, " IRpcStubBuffer* This,\n");
742 fprintf(header, " IRpcChannelBuffer* pRpcChannelBuffer,\n");
743 fprintf(header, " PRPC_MESSAGE pRpcMessage,\n");
744 fprintf(header, " DWORD* pdwStubPhase);\n");
748 while (NEXT_LINK(args))
749 args = NEXT_LINK(args);
751 check_for_user_types(args);
754 const func_t *m = iface->funcs;
755 while (m && strcmp(get_name(m->def), cas->name))
758 const var_t *mdef = m->def;
759 /* proxy prototype - use local prototype */
760 write_type(header, mdef->type, mdef, mdef->tname);
761 fprintf(header, " CALLBACK %s_", iface->name);
762 write_name(header, mdef);
763 fprintf(header, "_Proxy(\n");
764 write_args(header, m->args, iface->name, 1, TRUE);
765 fprintf(header, ");\n");
766 /* stub prototype - use remotable prototype */
767 write_type(header, def->type, def, def->tname);
768 fprintf(header, " __RPC_STUB %s_", iface->name);
769 write_name(header, mdef);
770 fprintf(header, "_Stub(\n");
771 write_args(header, cur->args, iface->name, 1, TRUE);
772 fprintf(header, ");\n");
775 yywarning("invalid call_as attribute (%s -> %s)\n", get_name(def), cas->name);
779 cur = PREV_LINK(cur);
783 static void write_function_proto(const type_t *iface)
785 const char *implicit_handle = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
786 int explicit_handle = is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE);
787 const var_t* explicit_handle_var;
789 func_t *cur = iface->funcs;
790 while (NEXT_LINK(cur)) cur = NEXT_LINK(cur);
792 var_t *def = cur->def;
794 /* check for a defined binding handle */
795 explicit_handle_var = get_explicit_handle_var(cur);
796 if (explicit_handle) {
797 if (!explicit_handle_var) {
798 error("%s() does not define an explicit binding handle!\n", def->name);
801 } else if (implicit_handle) {
802 if (explicit_handle_var) {
803 error("%s() must not define a binding handle!\n", def->name);
808 /* FIXME: do we need to handle call_as? */
809 write_type(header, def->type, def, def->tname);
810 fprintf(header, " ");
811 write_name(header, def);
812 fprintf(header, "(\n");
814 write_args(header, cur->args, iface->name, 0, TRUE);
816 fprintf(header, " void");
817 fprintf(header, ");\n");
819 cur = PREV_LINK(cur);
823 void write_forward(type_t *iface)
825 /* C/C++ forwards should only be written for object interfaces, so if we
826 * have a full definition we only write one if we find [object] among the
827 * attributes - however, if we don't have a full definition at this point
828 * (i.e. this is an IDL forward), then we also assume that it is an object
829 * interface, since non-object interfaces shouldn't need forwards */
830 if ((!iface->defined || is_object(iface->attrs) || is_attr(iface->attrs, ATTR_DISPINTERFACE))
831 && !iface->written) {
832 fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", iface->name);
833 fprintf(header, "#define __%s_FWD_DEFINED__\n", iface->name);
834 fprintf(header, "typedef interface %s %s;\n", iface->name, iface->name);
835 fprintf(header, "#endif\n\n" );
836 iface->written = TRUE;
840 static void write_iface_guid(const type_t *iface)
842 const UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
843 write_guid(header, "IID", iface->name, uuid);
846 static void write_dispiface_guid(const type_t *iface)
848 const UUID *uuid = get_attrp(iface->attrs, ATTR_UUID);
849 write_guid(header, "DIID", iface->name, uuid);
852 static void write_coclass_guid(type_t *cocl)
854 const UUID *uuid = get_attrp(cocl->attrs, ATTR_UUID);
855 write_guid(header, "CLSID", cocl->name, uuid);
858 static void write_com_interface(type_t *iface)
860 if (!iface->funcs && !iface->ref) {
861 yywarning("%s has no methods", iface->name);
865 fprintf(header, "/*****************************************************************************\n");
866 fprintf(header, " * %s interface\n", iface->name);
867 fprintf(header, " */\n");
868 fprintf(header,"#ifndef __%s_INTERFACE_DEFINED__\n", iface->name);
869 fprintf(header,"#define __%s_INTERFACE_DEFINED__\n\n", iface->name);
870 write_iface_guid(iface);
871 write_forward(iface);
873 fprintf(header, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
876 fprintf(header, "interface %s : public %s\n", iface->name, iface->ref->name);
877 fprintf(header, "{\n");
879 write_cpp_method_def(iface);
881 fprintf(header, "};\n");
885 fprintf(header, "interface %s\n", iface->name);
886 fprintf(header, "{\n");
887 fprintf(header, " BEGIN_INTERFACE\n");
888 fprintf(header, "\n");
890 write_cpp_method_def(iface);
892 fprintf(header, " END_INTERFACE\n");
893 fprintf(header, "};\n");
895 fprintf(header, "#else\n");
897 fprintf(header, "typedef struct %sVtbl {\n", iface->name);
899 fprintf(header, " BEGIN_INTERFACE\n");
900 fprintf(header, "\n");
901 write_c_method_def(iface);
903 fprintf(header, " END_INTERFACE\n");
904 fprintf(header, "} %sVtbl;\n", iface->name);
905 fprintf(header, "interface %s {\n", iface->name);
906 fprintf(header, " const %sVtbl* lpVtbl;\n", iface->name);
907 fprintf(header, "};\n");
908 fprintf(header, "\n");
909 fprintf(header, "#ifdef COBJMACROS\n");
910 write_method_macro(iface, iface->name);
911 fprintf(header, "#endif\n");
912 fprintf(header, "\n");
913 fprintf(header, "#endif\n");
914 fprintf(header, "\n");
915 write_method_proto(iface);
916 fprintf(header,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface->name);
919 static void write_rpc_interface(const type_t *iface)
921 unsigned long ver = get_attrv(iface->attrs, ATTR_VERSION);
922 const char *var = get_attrp(iface->attrs, ATTR_IMPLICIT_HANDLE);
923 static int allocate_written = 0;
925 if (!allocate_written)
927 allocate_written = 1;
928 fprintf(header, "void * __RPC_USER MIDL_user_allocate(size_t);\n");
929 fprintf(header, "void __RPC_USER MIDL_user_free(void *);\n\n");
932 fprintf(header, "/*****************************************************************************\n");
933 fprintf(header, " * %s interface (v%d.%d)\n", iface->name, LOWORD(ver), HIWORD(ver));
934 fprintf(header, " */\n");
935 fprintf(header,"#ifndef __%s_INTERFACE_DEFINED__\n", iface->name);
936 fprintf(header,"#define __%s_INTERFACE_DEFINED__\n\n", iface->name);
939 write_iface_guid(iface);
940 if (var) fprintf(header, "extern handle_t %s;\n", var);
943 fprintf(header, "extern RPC_IF_HANDLE %s_ClientIfHandle;\n", iface->name);
944 fprintf(header, "extern RPC_IF_HANDLE %s_ServerIfHandle;\n", iface->name);
948 fprintf(header, "extern RPC_IF_HANDLE %s_v%d_%d_c_ifspec;\n", iface->name, LOWORD(ver), HIWORD(ver));
949 fprintf(header, "extern RPC_IF_HANDLE %s_v%d_%d_s_ifspec;\n", iface->name, LOWORD(ver), HIWORD(ver));
951 write_function_proto(iface);
953 fprintf(header,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface->name);
955 /* FIXME: server/client code */
958 void write_interface(type_t *iface)
960 if (is_object(iface->attrs))
961 write_com_interface(iface);
963 write_rpc_interface(iface);
966 void write_dispinterface(type_t *iface)
968 fprintf(header, "/*****************************************************************************\n");
969 fprintf(header, " * %s dispinterface\n", iface->name);
970 fprintf(header, " */\n");
971 fprintf(header,"#ifndef __%s_DISPINTERFACE_DEFINED__\n", iface->name);
972 fprintf(header,"#define __%s_DISPINTERFACE_DEFINED__\n\n", iface->name);
973 write_dispiface_guid(iface);
974 write_forward(iface);
976 fprintf(header, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
977 fprintf(header, "interface %s : public %s\n", iface->name, iface->ref->name);
978 fprintf(header, "{\n");
979 fprintf(header, "};\n");
980 fprintf(header, "#else\n");
982 fprintf(header, "typedef struct %sVtbl {\n", iface->name);
984 fprintf(header, " BEGIN_INTERFACE\n");
985 fprintf(header, "\n");
986 write_c_disp_method_def(iface);
988 fprintf(header, " END_INTERFACE\n");
989 fprintf(header, "} %sVtbl;\n", iface->name);
990 fprintf(header, "interface %s {\n", iface->name);
991 fprintf(header, " const %sVtbl* lpVtbl;\n", iface->name);
992 fprintf(header, "};\n");
993 fprintf(header, "\n");
994 fprintf(header, "#ifdef COBJMACROS\n");
995 write_method_macro(iface->ref, iface->name);
996 fprintf(header, "#endif\n");
997 fprintf(header, "\n");
998 fprintf(header, "#endif\n");
999 fprintf(header, "\n");
1000 fprintf(header,"#endif /* __%s_DISPINTERFACE_DEFINED__ */\n\n", iface->name);
1003 void write_coclass(type_t *cocl)
1005 fprintf(header, "/*****************************************************************************\n");
1006 fprintf(header, " * %s coclass\n", cocl->name);
1007 fprintf(header, " */\n\n");
1008 write_coclass_guid(cocl);
1009 fprintf(header, "\n");
1012 void write_coclass_forward(type_t *cocl)
1014 fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", cocl->name);
1015 fprintf(header, "#define __%s_FWD_DEFINED__\n", cocl->name);
1016 fprintf(header, "typedef struct %s %s;\n", cocl->name, cocl->name);
1017 fprintf(header, "#endif /* defined __%s_FWD_DEFINED__ */\n\n", cocl->name );