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
40 static int indentation
= 0;
42 static void indent(FILE *h
, int delta
)
45 if (delta
< 0) indentation
+= delta
;
46 for (c
=0; c
<indentation
; c
++) fprintf(h
, " ");
47 if (delta
> 0) indentation
+= delta
;
50 int is_ptrchain_attr(const var_t
*var
, enum attr_type t
)
52 if (is_attr(var
->attrs
, t
))
56 type_t
*type
= var
->type
;
59 if (is_attr(type
->attrs
, t
))
61 else if (type
->kind
== TKIND_ALIAS
)
63 else if (is_ptr(type
))
70 int is_attr(const attr_list_t
*list
, enum attr_type t
)
73 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
74 if (attr
->type
== t
) return 1;
78 void *get_attrp(const attr_list_t
*list
, enum attr_type t
)
81 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
82 if (attr
->type
== t
) return attr
->u
.pval
;
86 unsigned long get_attrv(const attr_list_t
*list
, enum attr_type t
)
89 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
90 if (attr
->type
== t
) return attr
->u
.ival
;
94 int is_void(const type_t
*t
)
96 if (!t
->type
&& !t
->ref
) return 1;
100 int is_conformant_array(const type_t
*t
)
102 return t
->type
== RPC_FC_CARRAY
|| t
->type
== RPC_FC_CVARRAY
;
105 void write_guid(FILE *f
, const char *guid_prefix
, const char *name
, const UUID
*uuid
)
108 fprintf(f
, "DEFINE_GUID(%s_%s, 0x%08x, 0x%04x, 0x%04x, 0x%02x,0x%02x, 0x%02x,"
109 "0x%02x,0x%02x,0x%02x,0x%02x,0x%02x);\n",
110 guid_prefix
, name
, uuid
->Data1
, uuid
->Data2
, uuid
->Data3
, uuid
->Data4
[0],
111 uuid
->Data4
[1], uuid
->Data4
[2], uuid
->Data4
[3], uuid
->Data4
[4], uuid
->Data4
[5],
112 uuid
->Data4
[6], uuid
->Data4
[7]);
115 void write_name(FILE *h
, const var_t
*v
)
117 if (is_attr( v
->attrs
, ATTR_PROPGET
))
119 else if (is_attr( v
->attrs
, ATTR_PROPPUT
))
121 else if (is_attr( v
->attrs
, ATTR_PROPPUTREF
))
122 fprintf(h
, "putref_" );
123 fprintf(h
, "%s", v
->name
);
126 void write_prefix_name(FILE *h
, const char *prefix
, const var_t
*v
)
128 fprintf(h
, "%s", prefix
);
132 static void write_field(FILE *h
, var_t
*v
)
136 const char *name
= v
->name
;
138 switch (v
->type
->type
) {
140 case RPC_FC_CVSTRUCT
:
141 case RPC_FC_CPSTRUCT
:
144 case RPC_FC_BOGUS_STRUCT
:
145 case RPC_FC_ENCAPSULATED_UNION
:
146 name
= "DUMMYSTRUCTNAME";
148 case RPC_FC_NON_ENCAPSULATED_UNION
:
149 name
= "DUMMYUNIONNAME";
157 write_type(h
, v
->type
, TRUE
, "%s", name
);
162 static void write_fields(FILE *h
, var_list_t
*fields
)
166 LIST_FOR_EACH_ENTRY( v
, fields
, var_t
, entry
) write_field(h
, v
);
169 static void write_enums(FILE *h
, var_list_t
*enums
)
173 LIST_FOR_EACH_ENTRY( v
, enums
, var_t
, entry
)
180 write_expr(h
, v
->eval
, 0);
183 if (list_next( enums
, &v
->entry
)) fprintf(h
, ",\n");
188 int needs_space_after(type_t
*t
)
190 return (t
->kind
== TKIND_ALIAS
191 || (!is_ptr(t
) && (!is_conformant_array(t
) || t
->declarray
)));
194 void write_type_left(FILE *h
, type_t
*t
)
196 if (t
->is_const
) fprintf(h
, "const ");
198 if (t
->kind
== TKIND_ALIAS
) fprintf(h
, "%s", t
->name
);
199 else if (t
->declarray
) write_type_left(h
, t
->ref
);
201 if (t
->sign
> 0) fprintf(h
, "signed ");
202 else if (t
->sign
< 0) fprintf(h
, "unsigned ");
206 if (t
->defined
&& !t
->written
&& !t
->ignore
) {
207 if (t
->name
) fprintf(h
, "enum %s {\n", t
->name
);
208 else fprintf(h
, "enum {\n");
211 write_enums(h
, t
->fields
);
215 else fprintf(h
, "enum %s", t
->name
);
218 case RPC_FC_CVSTRUCT
:
219 case RPC_FC_CPSTRUCT
:
222 case RPC_FC_BOGUS_STRUCT
:
223 case RPC_FC_ENCAPSULATED_UNION
:
224 if (t
->defined
&& !t
->written
&& !t
->ignore
) {
225 if (t
->name
) fprintf(h
, "struct %s {\n", t
->name
);
226 else fprintf(h
, "struct {\n");
229 write_fields(h
, t
->fields
);
233 else fprintf(h
, "struct %s", t
->name
);
235 case RPC_FC_NON_ENCAPSULATED_UNION
:
236 if (t
->defined
&& !t
->written
&& !t
->ignore
) {
237 if (t
->name
) fprintf(h
, "union %s {\n", t
->name
);
238 else fprintf(h
, "union {\n");
241 write_fields(h
, t
->fields
);
245 else fprintf(h
, "union %s", t
->name
);
253 write_type_left(h
, t
->ref
);
254 fprintf(h
, "%s*", needs_space_after(t
->ref
) ? " " : "");
257 fprintf(h
, "%s", t
->name
);
262 void write_type_right(FILE *h
, type_t
*t
, int is_field
)
265 if (is_conformant_array(t
)) {
266 fprintf(h
, "[%s]", is_field
? "1" : "");
269 for ( ; t
->declarray
; t
= t
->ref
)
270 fprintf(h
, "[%lu]", t
->dim
);
274 void write_type(FILE *h
, type_t
*t
, int is_field
, const char *fmt
, ...)
276 write_type_left(h
, t
);
280 if (needs_space_after(t
))
282 vfprintf(h
, fmt
, args
);
285 write_type_right(h
, t
, is_field
);
288 user_type_list_t user_type_list
= LIST_INIT(user_type_list
);
290 static int user_type_registered(const char *name
)
293 LIST_FOR_EACH_ENTRY(ut
, &user_type_list
, user_type_t
, entry
)
294 if (!strcmp(name
, ut
->name
))
299 void check_for_user_types(const var_list_t
*list
)
304 LIST_FOR_EACH_ENTRY( v
, list
, const var_t
, entry
)
307 for (type
= v
->type
; type
; type
= type
->kind
== TKIND_ALIAS
? type
->orig
: type
->ref
) {
308 const char *name
= type
->name
;
309 if (type
->user_types_registered
) continue;
310 type
->user_types_registered
= 1;
311 if (is_attr(type
->attrs
, ATTR_WIREMARSHAL
)) {
312 if (!user_type_registered(name
))
314 user_type_t
*ut
= xmalloc(sizeof *ut
);
315 ut
->name
= xstrdup(name
);
316 list_add_tail(&user_type_list
, &ut
->entry
);
318 /* don't carry on parsing fields within this type as we are already
319 * using a wire marshaled type */
324 check_for_user_types(type
->fields
);
330 void write_user_types(void)
333 LIST_FOR_EACH_ENTRY(ut
, &user_type_list
, user_type_t
, entry
)
335 const char *name
= ut
->name
;
336 fprintf(header
, "ULONG __RPC_USER %s_UserSize (ULONG *, ULONG, %s *);\n", name
, name
);
337 fprintf(header
, "unsigned char * __RPC_USER %s_UserMarshal (ULONG *, unsigned char *, %s *);\n", name
, name
);
338 fprintf(header
, "unsigned char * __RPC_USER %s_UserUnmarshal(ULONG *, unsigned char *, %s *);\n", name
, name
);
339 fprintf(header
, "void __RPC_USER %s_UserFree (ULONG *, %s *);\n", name
, name
);
343 void write_typedef(type_t
*type
)
345 fprintf(header
, "typedef ");
346 write_type(header
, type
->orig
, FALSE
, "%s", type
->name
);
347 fprintf(header
, ";\n");
350 void write_expr(FILE *h
, const expr_t
*e
, int brackets
)
356 fprintf(h
, "%lu", e
->u
.lval
);
359 fprintf(h
, "0x%lx", e
->u
.lval
);
367 case EXPR_IDENTIFIER
:
368 fprintf(h
, "%s", e
->u
.sval
);
372 write_expr(h
, e
->ref
, 1);
376 write_expr(h
, e
->ref
, 1);
380 write_expr(h
, e
->ref
, 1);
384 write_type(h
, e
->u
.tref
, FALSE
, NULL
);
386 write_expr(h
, e
->ref
, 1);
389 fprintf(h
, "sizeof(");
390 write_type(h
, e
->u
.tref
, FALSE
, NULL
);
401 if (brackets
) fprintf(h
, "(");
402 write_expr(h
, e
->ref
, 1);
404 case EXPR_SHL
: fprintf(h
, " << "); break;
405 case EXPR_SHR
: fprintf(h
, " >> "); break;
406 case EXPR_MUL
: fprintf(h
, " * "); break;
407 case EXPR_DIV
: fprintf(h
, " / "); break;
408 case EXPR_ADD
: fprintf(h
, " + "); break;
409 case EXPR_SUB
: fprintf(h
, " - "); break;
410 case EXPR_AND
: fprintf(h
, " & "); break;
411 case EXPR_OR
: fprintf(h
, " | "); break;
414 write_expr(h
, e
->u
.ext
, 1);
415 if (brackets
) fprintf(h
, ")");
418 if (brackets
) fprintf(h
, "(");
419 write_expr(h
, e
->ref
, 1);
421 write_expr(h
, e
->u
.ext
, 1);
423 write_expr(h
, e
->ext2
, 1);
424 if (brackets
) fprintf(h
, ")");
429 void write_constdef(const var_t
*v
)
431 fprintf(header
, "#define %s (", v
->name
);
432 write_expr(header
, v
->eval
, 0);
433 fprintf(header
, ")\n\n");
436 void write_externdef(const var_t
*v
)
438 fprintf(header
, "extern const ");
439 write_type(header
, v
->type
, FALSE
, "%s", v
->name
);
440 fprintf(header
, ";\n\n");
443 void write_library(const char *name
, const attr_list_t
*attr
)
445 const UUID
*uuid
= get_attrp(attr
, ATTR_UUID
);
446 fprintf(header
, "\n");
447 write_guid(header
, "LIBID", name
, uuid
);
448 fprintf(header
, "\n");
452 const var_t
* get_explicit_handle_var(const func_t
* func
)
459 LIST_FOR_EACH_ENTRY( var
, func
->args
, const var_t
, entry
)
460 if (var
->type
->type
== RPC_FC_BIND_PRIMITIVE
)
466 int has_out_arg_or_return(const func_t
*func
)
470 if (!is_void(func
->def
->type
))
476 LIST_FOR_EACH_ENTRY( var
, func
->args
, const var_t
, entry
)
477 if (is_attr(var
->attrs
, ATTR_OUT
))
484 /********** INTERFACES **********/
486 int is_object(const attr_list_t
*list
)
489 if (list
) LIST_FOR_EACH_ENTRY( attr
, list
, const attr_t
, entry
)
490 if (attr
->type
== ATTR_OBJECT
|| attr
->type
== ATTR_ODL
) return 1;
494 int is_local(const attr_list_t
*a
)
496 return is_attr(a
, ATTR_LOCAL
);
499 const var_t
*is_callas(const attr_list_t
*a
)
501 return get_attrp(a
, ATTR_CALLAS
);
504 static void write_method_macro(const type_t
*iface
, const char *name
)
508 if (iface
->ref
) write_method_macro(iface
->ref
, name
);
510 if (!iface
->funcs
) return;
512 fprintf(header
, "/*** %s methods ***/\n", iface
->name
);
513 LIST_FOR_EACH_ENTRY( cur
, iface
->funcs
, const func_t
, entry
)
515 var_t
*def
= cur
->def
;
516 if (!is_callas(def
->attrs
)) {
521 if (cur
->args
) LIST_FOR_EACH_ENTRY( arg
, cur
->args
, const var_t
, entry
) argc
++;
523 fprintf(header
, "#define %s_", name
);
524 write_name(header
,def
);
525 fprintf(header
, "(p");
526 for (c
=0; c
<argc
; c
++)
527 fprintf(header
, ",%c", c
+'a');
528 fprintf(header
, ") ");
530 fprintf(header
, "(p)->lpVtbl->");
531 write_name(header
, def
);
532 fprintf(header
, "(p");
533 for (c
=0; c
<argc
; c
++)
534 fprintf(header
, ",%c", c
+'a');
535 fprintf(header
, ")\n");
540 void write_args(FILE *h
, const var_list_t
*args
, const char *name
, int method
, int do_indent
)
551 fprintf(h
, "%s* This", name
);
554 if (args
) LIST_FOR_EACH_ENTRY( arg
, args
, const var_t
, entry
) {
561 else fprintf(h
, ",");
565 write_type_left(h
, arg
->type
);
566 fprintf(h
, " (STDMETHODCALLTYPE *");
569 write_args(h
, arg
->args
, NULL
, 0, FALSE
);
573 write_type(h
, arg
->type
, FALSE
, "%s", arg
->name
);
576 if (do_indent
) indentation
--;
579 static void write_cpp_method_def(const type_t
*iface
)
583 if (!iface
->funcs
) return;
585 LIST_FOR_EACH_ENTRY( cur
, iface
->funcs
, const func_t
, entry
)
587 var_t
*def
= cur
->def
;
588 if (!is_callas(def
->attrs
)) {
590 fprintf(header
, "virtual ");
591 write_type_left(header
, def
->type
);
592 fprintf(header
, " STDMETHODCALLTYPE ");
593 write_name(header
, def
);
594 fprintf(header
, "(\n");
595 write_args(header
, cur
->args
, iface
->name
, 2, TRUE
);
596 fprintf(header
, ") = 0;\n");
597 fprintf(header
, "\n");
602 static void do_write_c_method_def(const type_t
*iface
, const char *name
)
606 if (iface
->ref
) do_write_c_method_def(iface
->ref
, name
);
608 if (!iface
->funcs
) return;
610 fprintf(header
, "/*** %s methods ***/\n", iface
->name
);
611 LIST_FOR_EACH_ENTRY( cur
, iface
->funcs
, const func_t
, entry
)
613 const var_t
*def
= cur
->def
;
614 if (!is_callas(def
->attrs
)) {
616 write_type_left(header
, def
->type
);
617 fprintf(header
, " (STDMETHODCALLTYPE *");
618 write_name(header
, def
);
619 fprintf(header
, ")(\n");
620 write_args(header
, cur
->args
, name
, 1, TRUE
);
621 fprintf(header
, ");\n");
622 fprintf(header
, "\n");
627 static void write_c_method_def(const type_t
*iface
)
629 do_write_c_method_def(iface
, iface
->name
);
632 static void write_c_disp_method_def(const type_t
*iface
)
634 do_write_c_method_def(iface
->ref
, iface
->name
);
637 static void write_method_proto(const type_t
*iface
)
641 if (!iface
->funcs
) return;
642 LIST_FOR_EACH_ENTRY( cur
, iface
->funcs
, const func_t
, entry
)
644 const var_t
*def
= cur
->def
;
645 const var_t
*cas
= is_callas(def
->attrs
);
647 if (!is_local(def
->attrs
)) {
648 /* proxy prototype */
649 write_type_left(header
, def
->type
);
650 fprintf(header
, " CALLBACK %s_", iface
->name
);
651 write_name(header
, def
);
652 fprintf(header
, "_Proxy(\n");
653 write_args(header
, cur
->args
, iface
->name
, 1, TRUE
);
654 fprintf(header
, ");\n");
656 fprintf(header
, "void __RPC_STUB %s_", iface
->name
);
657 write_name(header
,def
);
658 fprintf(header
, "_Stub(\n");
659 fprintf(header
, " IRpcStubBuffer* This,\n");
660 fprintf(header
, " IRpcChannelBuffer* pRpcChannelBuffer,\n");
661 fprintf(header
, " PRPC_MESSAGE pRpcMessage,\n");
662 fprintf(header
, " DWORD* pdwStubPhase);\n");
666 LIST_FOR_EACH_ENTRY( m
, iface
->funcs
, const func_t
, entry
)
667 if (!strcmp(m
->def
->name
, cas
->name
)) break;
668 if (&m
->entry
!= iface
->funcs
) {
669 const var_t
*mdef
= m
->def
;
670 /* proxy prototype - use local prototype */
671 write_type_left(header
, mdef
->type
);
672 fprintf(header
, " CALLBACK %s_", iface
->name
);
673 write_name(header
, mdef
);
674 fprintf(header
, "_Proxy(\n");
675 write_args(header
, m
->args
, iface
->name
, 1, TRUE
);
676 fprintf(header
, ");\n");
677 /* stub prototype - use remotable prototype */
678 write_type_left(header
, def
->type
);
679 fprintf(header
, " __RPC_STUB %s_", iface
->name
);
680 write_name(header
, mdef
);
681 fprintf(header
, "_Stub(\n");
682 write_args(header
, cur
->args
, iface
->name
, 1, TRUE
);
683 fprintf(header
, ");\n");
686 parser_warning("invalid call_as attribute (%s -> %s)\n", def
->name
, cas
->name
);
692 static void write_function_proto(const type_t
*iface
, const func_t
*fun
, const char *prefix
)
694 var_t
*def
= fun
->def
;
696 /* FIXME: do we need to handle call_as? */
697 write_type_left(header
, def
->type
);
698 fprintf(header
, " ");
699 write_prefix_name(header
, prefix
, def
);
700 fprintf(header
, "(\n");
702 write_args(header
, fun
->args
, iface
->name
, 0, TRUE
);
704 fprintf(header
, " void");
705 fprintf(header
, ");\n");
708 static void write_function_protos(const type_t
*iface
)
710 const char *implicit_handle
= get_attrp(iface
->attrs
, ATTR_IMPLICIT_HANDLE
);
711 int explicit_handle
= is_attr(iface
->attrs
, ATTR_EXPLICIT_HANDLE
);
712 const var_t
* explicit_handle_var
;
714 int prefixes_differ
= strcmp(prefix_client
, prefix_server
);
716 if (!iface
->funcs
) return;
717 LIST_FOR_EACH_ENTRY( cur
, iface
->funcs
, const func_t
, entry
)
719 var_t
*def
= cur
->def
;
721 /* check for a defined binding handle */
722 explicit_handle_var
= get_explicit_handle_var(cur
);
723 if (explicit_handle
) {
724 if (!explicit_handle_var
) {
725 error("%s() does not define an explicit binding handle!\n", def
->name
);
728 } else if (implicit_handle
) {
729 if (explicit_handle_var
) {
730 error("%s() must not define a binding handle!\n", def
->name
);
735 if (prefixes_differ
) {
736 fprintf(header
, "/* client prototype */\n");
737 write_function_proto(iface
, cur
, prefix_client
);
738 fprintf(header
, "/* server prototype */\n");
740 write_function_proto(iface
, cur
, prefix_server
);
744 void write_forward(type_t
*iface
)
746 /* C/C++ forwards should only be written for object interfaces, so if we
747 * have a full definition we only write one if we find [object] among the
748 * attributes - however, if we don't have a full definition at this point
749 * (i.e. this is an IDL forward), then we also assume that it is an object
750 * interface, since non-object interfaces shouldn't need forwards */
751 if ((!iface
->defined
|| is_object(iface
->attrs
) || is_attr(iface
->attrs
, ATTR_DISPINTERFACE
))
752 && !iface
->written
) {
753 fprintf(header
, "#ifndef __%s_FWD_DEFINED__\n", iface
->name
);
754 fprintf(header
, "#define __%s_FWD_DEFINED__\n", iface
->name
);
755 fprintf(header
, "typedef interface %s %s;\n", iface
->name
, iface
->name
);
756 fprintf(header
, "#endif\n\n" );
757 iface
->written
= TRUE
;
761 static void write_iface_guid(const type_t
*iface
)
763 const UUID
*uuid
= get_attrp(iface
->attrs
, ATTR_UUID
);
764 write_guid(header
, "IID", iface
->name
, uuid
);
767 static void write_dispiface_guid(const type_t
*iface
)
769 const UUID
*uuid
= get_attrp(iface
->attrs
, ATTR_UUID
);
770 write_guid(header
, "DIID", iface
->name
, uuid
);
773 static void write_coclass_guid(type_t
*cocl
)
775 const UUID
*uuid
= get_attrp(cocl
->attrs
, ATTR_UUID
);
776 write_guid(header
, "CLSID", cocl
->name
, uuid
);
779 static void write_com_interface(type_t
*iface
)
781 if (!iface
->funcs
&& !iface
->ref
) {
782 parser_warning("%s has no methods", iface
->name
);
786 fprintf(header
, "/*****************************************************************************\n");
787 fprintf(header
, " * %s interface\n", iface
->name
);
788 fprintf(header
, " */\n");
789 fprintf(header
,"#ifndef __%s_INTERFACE_DEFINED__\n", iface
->name
);
790 fprintf(header
,"#define __%s_INTERFACE_DEFINED__\n\n", iface
->name
);
791 write_iface_guid(iface
);
792 write_forward(iface
);
794 fprintf(header
, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
797 fprintf(header
, "interface %s : public %s\n", iface
->name
, iface
->ref
->name
);
798 fprintf(header
, "{\n");
800 write_cpp_method_def(iface
);
802 fprintf(header
, "};\n");
806 fprintf(header
, "interface %s\n", iface
->name
);
807 fprintf(header
, "{\n");
808 fprintf(header
, " BEGIN_INTERFACE\n");
809 fprintf(header
, "\n");
811 write_cpp_method_def(iface
);
813 fprintf(header
, " END_INTERFACE\n");
814 fprintf(header
, "};\n");
816 fprintf(header
, "#else\n");
818 fprintf(header
, "typedef struct %sVtbl {\n", iface
->name
);
820 fprintf(header
, " BEGIN_INTERFACE\n");
821 fprintf(header
, "\n");
822 write_c_method_def(iface
);
824 fprintf(header
, " END_INTERFACE\n");
825 fprintf(header
, "} %sVtbl;\n", iface
->name
);
826 fprintf(header
, "interface %s {\n", iface
->name
);
827 fprintf(header
, " CONST_VTBL %sVtbl* lpVtbl;\n", iface
->name
);
828 fprintf(header
, "};\n");
829 fprintf(header
, "\n");
830 fprintf(header
, "#ifdef COBJMACROS\n");
831 write_method_macro(iface
, iface
->name
);
832 fprintf(header
, "#endif\n");
833 fprintf(header
, "\n");
834 fprintf(header
, "#endif\n");
835 fprintf(header
, "\n");
836 write_method_proto(iface
);
837 fprintf(header
,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface
->name
);
840 static void write_rpc_interface(const type_t
*iface
)
842 unsigned long ver
= get_attrv(iface
->attrs
, ATTR_VERSION
);
843 const char *var
= get_attrp(iface
->attrs
, ATTR_IMPLICIT_HANDLE
);
844 static int allocate_written
= 0;
846 if (!allocate_written
)
848 allocate_written
= 1;
849 fprintf(header
, "void * __RPC_USER MIDL_user_allocate(size_t);\n");
850 fprintf(header
, "void __RPC_USER MIDL_user_free(void *);\n\n");
853 fprintf(header
, "/*****************************************************************************\n");
854 fprintf(header
, " * %s interface (v%d.%d)\n", iface
->name
, LOWORD(ver
), HIWORD(ver
));
855 fprintf(header
, " */\n");
856 fprintf(header
,"#ifndef __%s_INTERFACE_DEFINED__\n", iface
->name
);
857 fprintf(header
,"#define __%s_INTERFACE_DEFINED__\n\n", iface
->name
);
860 write_iface_guid(iface
);
861 if (var
) fprintf(header
, "extern handle_t %s;\n", var
);
864 fprintf(header
, "extern RPC_IF_HANDLE %s%s_ClientIfHandle;\n", prefix_client
, iface
->name
);
865 fprintf(header
, "extern RPC_IF_HANDLE %s%s_ServerIfHandle;\n", prefix_server
, iface
->name
);
869 fprintf(header
, "extern RPC_IF_HANDLE %s%s_v%d_%d_c_ifspec;\n",
870 prefix_client
, iface
->name
, LOWORD(ver
), HIWORD(ver
));
871 fprintf(header
, "extern RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec;\n",
872 prefix_server
, iface
->name
, LOWORD(ver
), HIWORD(ver
));
874 write_function_protos(iface
);
876 fprintf(header
,"\n#endif /* __%s_INTERFACE_DEFINED__ */\n\n", iface
->name
);
878 /* FIXME: server/client code */
881 void write_interface(type_t
*iface
)
883 if (is_object(iface
->attrs
))
884 write_com_interface(iface
);
886 write_rpc_interface(iface
);
889 void write_dispinterface(type_t
*iface
)
891 fprintf(header
, "/*****************************************************************************\n");
892 fprintf(header
, " * %s dispinterface\n", iface
->name
);
893 fprintf(header
, " */\n");
894 fprintf(header
,"#ifndef __%s_DISPINTERFACE_DEFINED__\n", iface
->name
);
895 fprintf(header
,"#define __%s_DISPINTERFACE_DEFINED__\n\n", iface
->name
);
896 write_dispiface_guid(iface
);
897 write_forward(iface
);
899 fprintf(header
, "#if defined(__cplusplus) && !defined(CINTERFACE)\n");
900 fprintf(header
, "interface %s : public %s\n", iface
->name
, iface
->ref
->name
);
901 fprintf(header
, "{\n");
902 fprintf(header
, "};\n");
903 fprintf(header
, "#else\n");
905 fprintf(header
, "typedef struct %sVtbl {\n", iface
->name
);
907 fprintf(header
, " BEGIN_INTERFACE\n");
908 fprintf(header
, "\n");
909 write_c_disp_method_def(iface
);
911 fprintf(header
, " END_INTERFACE\n");
912 fprintf(header
, "} %sVtbl;\n", iface
->name
);
913 fprintf(header
, "interface %s {\n", iface
->name
);
914 fprintf(header
, " CONST_VTBL %sVtbl* lpVtbl;\n", iface
->name
);
915 fprintf(header
, "};\n");
916 fprintf(header
, "\n");
917 fprintf(header
, "#ifdef COBJMACROS\n");
918 write_method_macro(iface
->ref
, iface
->name
);
919 fprintf(header
, "#endif\n");
920 fprintf(header
, "\n");
921 fprintf(header
, "#endif\n");
922 fprintf(header
, "\n");
923 fprintf(header
,"#endif /* __%s_DISPINTERFACE_DEFINED__ */\n\n", iface
->name
);
926 void write_coclass(type_t
*cocl
)
928 fprintf(header
, "/*****************************************************************************\n");
929 fprintf(header
, " * %s coclass\n", cocl
->name
);
930 fprintf(header
, " */\n\n");
931 write_coclass_guid(cocl
);
932 fprintf(header
, "\n");
935 void write_coclass_forward(type_t
*cocl
)
937 fprintf(header
, "#ifndef __%s_FWD_DEFINED__\n", cocl
->name
);
938 fprintf(header
, "#define __%s_FWD_DEFINED__\n", cocl
->name
);
939 fprintf(header
, "typedef struct %s %s;\n", cocl
->name
, cocl
->name
);
940 fprintf(header
, "#endif /* defined __%s_FWD_DEFINED__ */\n\n", cocl
->name
);