ntoskrnl.exe: Initial stub version with forwards to existing functions.
[wine/testsucceed.git] / tools / widl / proxy.c
blob2eb9de116c169a2eb422f75584bcfa282e3170c9
1 /*
2 * IDL Compiler
4 * Copyright 2002 Ove Kaaven
5 * Copyright 2004 Mike McCormack
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "config.h"
23 #include "wine/port.h"
25 #include <stdio.h>
26 #include <stdlib.h>
27 #ifdef HAVE_UNISTD_H
28 # include <unistd.h>
29 #endif
30 #include <string.h>
31 #include <assert.h>
32 #include <ctype.h>
33 #include <signal.h>
35 #include "widl.h"
36 #include "utils.h"
37 #include "parser.h"
38 #include "header.h"
39 #include "typegen.h"
41 #define END_OF_LIST(list) \
42 do { \
43 if (list) { \
44 while (NEXT_LINK(list)) \
45 list = NEXT_LINK(list); \
46 } \
47 } while(0)
49 static FILE* proxy;
50 static int indent = 0;
52 /* FIXME: support generation of stubless proxies */
54 static int print_proxy( const char *format, ... )
56 va_list va;
57 int i, r;
59 va_start( va, format );
60 if ( format[0] != '\n' )
61 for( i=0; i<indent; i++ )
62 fprintf( proxy, " " );
63 r = vfprintf( proxy, format, va );
64 va_end( va );
65 return r;
68 static void write_stubdescproto(void)
70 print_proxy( "static const MIDL_STUB_DESC Object_StubDesc;\n");
71 print_proxy( "\n");
74 static void write_stubdesc(void)
76 print_proxy( "static const MIDL_STUB_DESC Object_StubDesc =\n{\n");
77 indent++;
78 print_proxy( "0,\n");
79 print_proxy( "NdrOleAllocate,\n");
80 print_proxy( "NdrOleFree,\n");
81 print_proxy( "{0}, 0, 0, 0, 0,\n");
82 print_proxy( "__MIDL_TypeFormatString.Format,\n");
83 print_proxy( "1, /* -error bounds_check flag */\n");
84 print_proxy( "0x10001, /* Ndr library version */\n");
85 print_proxy( "0,\n");
86 print_proxy( "0x50100a4, /* MIDL Version 5.1.164 */\n");
87 print_proxy( "0,\n");
88 print_proxy( "0,\n");
89 print_proxy( "0, /* notify & notify_flag routine table */\n");
90 print_proxy( "1, /* Flags */\n");
91 print_proxy( "0, /* Reserved3 */\n");
92 print_proxy( "0, /* Reserved4 */\n");
93 print_proxy( "0 /* Reserved5 */\n");
94 indent--;
95 print_proxy( "};\n");
96 print_proxy( "\n");
99 static void init_proxy(ifref_list_t *ifaces)
101 if (proxy) return;
102 if(!(proxy = fopen(proxy_name, "w")))
103 error("Could not open %s for output\n", proxy_name);
104 print_proxy( "/*** Autogenerated by WIDL %s from %s - Do not edit ***/\n", PACKAGE_VERSION, input_name);
105 print_proxy( "\n");
106 print_proxy( "#ifndef __REDQ_RPCPROXY_H_VERSION__\n");
107 print_proxy( "#define __REQUIRED_RPCPROXY_H_VERSION__ 440\n");
108 print_proxy( "#endif /* __REDQ_RPCPROXY_H_VERSION__ */\n");
109 print_proxy( "\n");
110 print_proxy( "#define __midl_proxy\n");
111 print_proxy( "#include \"objbase.h\"\n");
112 print_proxy( "#include \"rpcproxy.h\"\n");
113 print_proxy( "#ifndef __RPCPROXY_H_VERSION__\n");
114 print_proxy( "#error This code needs a newer version of rpcproxy.h\n");
115 print_proxy( "#endif /* __RPCPROXY_H_VERSION__ */\n");
116 print_proxy( "\n");
117 print_proxy( "#include \"%s\"\n", header_name);
118 print_proxy( "\n");
119 write_formatstringsdecl(proxy, indent, ifaces, 1);
120 write_stubdescproto();
123 static void clear_output_vars( const var_list_t *args )
125 const var_t *arg;
127 if (!args) return;
128 LIST_FOR_EACH_ENTRY( arg, args, const var_t, entry )
130 if (is_attr(arg->attrs, ATTR_OUT) && !is_attr(arg->attrs, ATTR_IN)) {
131 print_proxy( "if(%s)\n", arg->name );
132 indent++;
133 print_proxy( "MIDL_memset( %s, 0, sizeof( *%s ));\n", arg->name, arg->name );
134 indent--;
139 int is_var_ptr(const var_t *v)
141 return is_ptr(v->type);
144 int cant_be_null(const var_t *v)
146 /* Search backwards for the most recent pointer attribute. */
147 const attr_list_t *attrs = v->attrs;
148 const type_t *type = v->type;
150 if (! attrs && type)
152 attrs = type->attrs;
153 type = type->ref;
156 while (attrs)
158 int t = get_attrv(attrs, ATTR_POINTERTYPE);
160 if (t == RPC_FC_FP || t == RPC_FC_OP || t == RPC_FC_UP)
161 return 0;
163 if (t == RPC_FC_RP)
164 return 1;
166 if (type)
168 attrs = type->attrs;
169 type = type->ref;
171 else
172 attrs = NULL;
175 return 1; /* Default is RPC_FC_RP. */
178 static void proxy_check_pointers( const var_list_t *args )
180 const var_t *arg;
182 if (!args) return;
183 LIST_FOR_EACH_ENTRY( arg, args, const var_t, entry )
185 if (is_var_ptr(arg) && cant_be_null(arg)) {
186 print_proxy( "if(!%s)\n", arg->name );
187 indent++;
188 print_proxy( "RpcRaiseException(RPC_X_NULL_REF_POINTER);\n");
189 indent--;
194 static void free_variable( const var_t *arg, unsigned int type_offset )
196 var_t *constraint;
197 type_t *type;
198 expr_list_t *expr;
200 expr = get_attrp( arg->attrs, ATTR_SIZEIS );
201 if (expr)
203 const expr_t *size = LIST_ENTRY( list_head(expr), const expr_t, entry );
204 print_proxy( "_StubMsg.MaxCount = " );
205 write_expr(proxy, size, 0);
206 fprintf(proxy, ";\n\n");
207 print_proxy( "NdrClearOutParameters( &_StubMsg, ");
208 fprintf(proxy, "&__MIDL_TypeFormatString.Format[%u], ", type_offset );
209 fprintf(proxy, "(void*)%s );\n", arg->name );
210 return;
213 type = arg->type;
214 switch( type->type )
216 case RPC_FC_BYTE:
217 case RPC_FC_CHAR:
218 case RPC_FC_WCHAR:
219 case RPC_FC_SHORT:
220 case RPC_FC_USHORT:
221 case RPC_FC_ENUM16:
222 case RPC_FC_LONG:
223 case RPC_FC_ULONG:
224 case RPC_FC_ENUM32:
225 case RPC_FC_STRUCT:
226 break;
228 case RPC_FC_FP:
229 case RPC_FC_IP:
230 constraint = get_attrp( arg->attrs, ATTR_IIDIS );
231 if( constraint )
232 print_proxy( "_StubMsg.MaxCount = (unsigned long) ( %s );\n",constraint->name);
233 print_proxy( "NdrClearOutParameters( &_StubMsg, ");
234 fprintf(proxy, "&__MIDL_TypeFormatString.Format[%u], ", type_offset );
235 fprintf(proxy, "(void*)%s );\n", arg->name );
236 break;
238 default:
239 print_proxy("/* FIXME: %s code for %s type %d missing */\n", __FUNCTION__, arg->name, type->type );
243 static void proxy_free_variables( var_list_t *args, unsigned int type_offset )
245 const var_t *arg;
247 if (!args) return;
248 LIST_FOR_EACH_ENTRY( arg, args, const var_t, entry )
250 size_t start_offset;
251 size_t size_type = get_size_typeformatstring_var(arg, &start_offset);
252 start_offset += type_offset;
254 if (is_attr(arg->attrs, ATTR_OUT))
256 free_variable( arg, type_offset );
257 fprintf(proxy, "\n");
260 type_offset += size_type;
264 static void gen_proxy(type_t *iface, const func_t *cur, int idx,
265 unsigned int proc_offset, unsigned int *type_offset)
267 var_t *def = cur->def;
268 int has_ret = !is_void(def->type);
269 unsigned int offset;
271 indent = 0;
272 write_type(proxy, def->type);
273 print_proxy( " STDMETHODCALLTYPE %s_", iface->name);
274 write_name(proxy, def);
275 print_proxy( "_Proxy(\n");
276 write_args(proxy, cur->args, iface->name, 1, TRUE);
277 print_proxy( ")\n");
278 print_proxy( "{\n");
279 indent ++;
280 /* local variables */
281 if (has_ret) {
282 print_proxy( "" );
283 write_type(proxy, def->type);
284 print_proxy( " _RetVal;\n");
286 print_proxy( "RPC_MESSAGE _RpcMessage;\n" );
287 print_proxy( "MIDL_STUB_MESSAGE _StubMsg;\n" );
288 print_proxy( "\n");
290 /* FIXME: trace */
291 clear_output_vars( cur->args );
293 print_proxy( "RpcTryExcept\n" );
294 print_proxy( "{\n" );
295 indent++;
296 print_proxy( "NdrProxyInitialize(This, &_RpcMessage, &_StubMsg, &Object_StubDesc, %d);\n", idx);
297 proxy_check_pointers( cur->args );
299 print_proxy( "RpcTryFinally\n" );
300 print_proxy( "{\n" );
301 indent++;
303 offset = *type_offset;
304 write_remoting_arguments(proxy, indent, cur, &offset, PASS_IN, PHASE_BUFFERSIZE);
306 print_proxy( "NdrProxyGetBuffer(This, &_StubMsg);\n" );
308 offset = *type_offset;
309 write_remoting_arguments(proxy, indent, cur, &offset, PASS_IN, PHASE_MARSHAL);
311 print_proxy( "NdrProxySendReceive(This, &_StubMsg);\n" );
312 fprintf(proxy, "\n");
313 print_proxy( "_StubMsg.BufferStart = _RpcMessage.Buffer;\n" );
314 print_proxy( "_StubMsg.BufferEnd = _StubMsg.BufferStart + _RpcMessage.BufferLength;\n\n" );
316 print_proxy("if ((_RpcMessage.DataRepresentation & 0xffff) != NDR_LOCAL_DATA_REPRESENTATION)\n");
317 indent++;
318 print_proxy("NdrConvert( &_StubMsg, &__MIDL_ProcFormatString.Format[%u]);\n", proc_offset );
319 indent--;
320 fprintf(proxy, "\n");
322 offset = *type_offset;
323 write_remoting_arguments(proxy, indent, cur, type_offset, PASS_OUT, PHASE_UNMARSHAL);
325 if (has_ret)
326 print_phase_basetype(proxy, indent, PHASE_UNMARSHAL, PASS_RETURN, def, "_RetVal");
328 indent--;
329 print_proxy( "}\n");
330 print_proxy( "RpcFinally\n" );
331 print_proxy( "{\n" );
332 indent++;
333 print_proxy( "NdrProxyFreeBuffer(This, &_StubMsg);\n" );
334 indent--;
335 print_proxy( "}\n");
336 print_proxy( "RpcEndFinally\n" );
337 indent--;
338 print_proxy( "}\n" );
339 print_proxy( "RpcExcept(_StubMsg.dwStubPhase != PROXY_SENDRECEIVE)\n" );
340 print_proxy( "{\n" );
341 if (has_ret) {
342 indent++;
343 proxy_free_variables( cur->args, offset );
344 print_proxy( "_RetVal = NdrProxyErrorHandler(RpcExceptionCode());\n" );
345 indent--;
347 print_proxy( "}\n" );
348 print_proxy( "RpcEndExcept\n" );
350 if (has_ret) {
351 print_proxy( "return _RetVal;\n" );
353 indent--;
354 print_proxy( "}\n");
355 print_proxy( "\n");
358 static void gen_stub(type_t *iface, const func_t *cur, const char *cas,
359 unsigned int proc_offset, unsigned int *type_offset)
361 var_t *def = cur->def;
362 const var_t *arg;
363 int has_ret = !is_void(def->type);
364 unsigned int offset;
366 indent = 0;
367 print_proxy( "void __RPC_STUB %s_", iface->name);
368 write_name(proxy, def);
369 print_proxy( "_Stub(\n");
370 indent++;
371 print_proxy( "IRpcStubBuffer* This,\n");
372 print_proxy( "IRpcChannelBuffer *_pRpcChannelBuffer,\n");
373 print_proxy( "PRPC_MESSAGE _pRpcMessage,\n");
374 print_proxy( "DWORD* _pdwStubPhase)\n");
375 indent--;
376 print_proxy( "{\n");
377 indent++;
378 print_proxy("%s * _This = (%s*)((CStdStubBuffer*)This)->pvServerObject;\n", iface->name, iface->name);
379 print_proxy("MIDL_STUB_MESSAGE _StubMsg;\n");
380 declare_stub_args( proxy, indent, cur );
381 fprintf(proxy, "\n");
383 /* FIXME: trace */
385 print_proxy("NdrStubInitialize(_pRpcMessage, &_StubMsg, &Object_StubDesc, _pRpcChannelBuffer);\n");
386 fprintf(proxy, "\n");
388 if (cur->args)
389 LIST_FOR_EACH_ENTRY( arg, cur->args, const var_t, entry )
390 print_proxy("%s = 0;\n", arg->name);
392 print_proxy("RpcTryFinally\n");
393 print_proxy("{\n");
394 indent++;
395 print_proxy("if ((_pRpcMessage->DataRepresentation & 0xffff) != NDR_LOCAL_DATA_REPRESENTATION)\n");
396 indent++;
397 print_proxy("NdrConvert( &_StubMsg, &__MIDL_ProcFormatString.Format[%u]);\n", proc_offset );
398 indent--;
399 fprintf(proxy, "\n");
401 offset = *type_offset;
402 write_remoting_arguments(proxy, indent, cur, &offset, PASS_IN, PHASE_UNMARSHAL);
403 fprintf(proxy, "\n");
405 assign_stub_out_args( proxy, indent, cur );
407 print_proxy("*_pdwStubPhase = STUB_CALL_SERVER;\n");
408 fprintf(proxy, "\n");
409 print_proxy("");
410 if (has_ret) fprintf(proxy, "_RetVal = ");
411 if (cas) fprintf(proxy, "%s_%s_Stub", iface->name, cas);
412 else
414 fprintf(proxy, "_This->lpVtbl->");
415 write_name(proxy, def);
417 fprintf(proxy, "(_This");
419 if (cur->args)
421 LIST_FOR_EACH_ENTRY( arg, cur->args, const var_t, entry )
423 fprintf(proxy, ", ");
424 if (arg->array)
425 fprintf(proxy, "*");
426 write_name(proxy, arg);
429 fprintf(proxy, ");\n");
430 fprintf(proxy, "\n");
431 print_proxy("*_pdwStubPhase = STUB_MARSHAL;\n");
432 fprintf(proxy, "\n");
434 offset = *type_offset;
435 write_remoting_arguments(proxy, indent, cur, &offset, PASS_OUT, PHASE_BUFFERSIZE);
437 print_proxy("NdrStubGetBuffer(This, _pRpcChannelBuffer, &_StubMsg);\n");
439 offset = *type_offset;
440 write_remoting_arguments(proxy, indent, cur, &offset, PASS_OUT, PHASE_MARSHAL);
441 fprintf(proxy, "\n");
443 if (has_ret)
444 print_phase_basetype(proxy, indent, PHASE_MARSHAL, PASS_RETURN, def, "_RetVal");
446 indent--;
447 print_proxy("}\n");
448 print_proxy("RpcFinally\n");
449 print_proxy("{\n");
451 offset = *type_offset;
452 write_remoting_arguments(proxy, indent+1, cur, &offset, PASS_OUT, PHASE_FREE);
454 print_proxy("}\n");
455 print_proxy("RpcEndFinally\n");
457 print_proxy("_pRpcMessage->BufferLength = _StubMsg.Buffer - (unsigned char *)_pRpcMessage->Buffer;\n");
458 indent--;
460 print_proxy("}\n");
461 print_proxy("\n");
464 static int write_proxy_methods(type_t *iface)
466 const func_t *cur;
467 int i = 0;
469 if (iface->ref) i = write_proxy_methods(iface->ref);
470 if (iface->funcs) LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry ) {
471 var_t *def = cur->def;
472 if (!is_callas(def->attrs)) {
473 if (i) fprintf(proxy, ",\n");
474 print_proxy( "%s_", iface->name);
475 write_name(proxy, def);
476 fprintf(proxy, "_Proxy");
477 i++;
480 return i;
483 static int write_stub_methods(type_t *iface)
485 const func_t *cur;
486 int i = 0;
488 if (iface->ref) i = write_stub_methods(iface->ref);
489 else return i; /* skip IUnknown */
491 if (iface->funcs) LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry ) {
492 var_t *def = cur->def;
493 if (!is_local(def->attrs)) {
494 if (i) fprintf(proxy,",\n");
495 print_proxy( "%s_", iface->name);
496 write_name(proxy, def);
497 fprintf(proxy, "_Stub");
498 i++;
501 return i;
504 static void write_proxy(type_t *iface, unsigned int *proc_offset, unsigned int *type_offset)
506 int midx = -1, stubs;
507 const func_t *cur;
508 unsigned int offset;
510 if (!iface->funcs) return;
512 /* FIXME: check for [oleautomation], shouldn't generate proxies/stubs if specified */
514 fprintf(proxy, "/*****************************************************************************\n");
515 fprintf(proxy, " * %s interface\n", iface->name);
516 fprintf(proxy, " */\n");
517 LIST_FOR_EACH_ENTRY( cur, iface->funcs, const func_t, entry )
519 const var_t *def = cur->def;
520 if (!is_local(def->attrs)) {
521 const var_t *cas = is_callas(def->attrs);
522 const char *cname = cas ? cas->name : NULL;
523 int idx = cur->idx;
524 if (cname) {
525 const func_t *m;
526 LIST_FOR_EACH_ENTRY( m, iface->funcs, const func_t, entry )
527 if (!strcmp(get_name(m->def), cname))
529 idx = m->idx;
530 break;
533 offset = *type_offset;
534 gen_proxy(iface, cur, idx, *proc_offset, type_offset);
535 gen_stub(iface, cur, cname, *proc_offset, &offset);
536 *proc_offset += get_size_procformatstring_func( cur );
537 if (midx == -1) midx = idx;
538 else if (midx != idx) parser_error("method index mismatch in write_proxy");
539 midx++;
543 /* proxy vtable */
544 print_proxy( "static const CINTERFACE_PROXY_VTABLE(%d) _%sProxyVtbl =\n", midx, iface->name);
545 print_proxy( "{\n");
546 indent++;
547 print_proxy( "{\n", iface->name);
548 indent++;
549 print_proxy( "&IID_%s,\n", iface->name);
550 indent--;
551 print_proxy( "},\n");
552 print_proxy( "{\n");
553 indent++;
554 write_proxy_methods(iface);
555 fprintf(proxy, "\n");
556 indent--;
557 print_proxy( "}\n");
558 indent--;
559 print_proxy( "};\n");
560 fprintf(proxy, "\n\n");
562 /* stub vtable */
563 print_proxy( "static const PRPC_STUB_FUNCTION %s_table[] =\n", iface->name);
564 print_proxy( "{\n");
565 indent++;
566 stubs = write_stub_methods(iface);
567 fprintf(proxy, "\n");
568 indent--;
569 fprintf(proxy, "};\n");
570 print_proxy( "\n");
571 print_proxy( "static const CInterfaceStubVtbl _%sStubVtbl =\n", iface->name);
572 print_proxy( "{\n");
573 indent++;
574 print_proxy( "{\n");
575 indent++;
576 print_proxy( "&IID_%s,\n", iface->name);
577 print_proxy( "0,\n");
578 print_proxy( "%d,\n", stubs+3);
579 print_proxy( "&%s_table[-3],\n", iface->name);
580 indent--;
581 print_proxy( "},\n", iface->name);
582 print_proxy( "{\n");
583 indent++;
584 print_proxy( "CStdStubBuffer_METHODS\n");
585 indent--;
586 print_proxy( "}\n");
587 indent--;
588 print_proxy( "};\n");
589 print_proxy( "\n");
592 void write_proxies(ifref_list_t *ifaces)
594 ifref_t *cur;
595 char *file_id = proxy_token;
596 int c;
597 unsigned int proc_offset = 0, type_offset = 0;
599 if (!do_proxies) return;
600 if (do_everything && !ifaces) return;
602 init_proxy(ifaces);
603 if(!proxy) return;
605 if (ifaces)
606 LIST_FOR_EACH_ENTRY( cur, ifaces, ifref_t, entry )
607 if (is_object(cur->iface->attrs) && !is_local(cur->iface->attrs))
608 write_proxy(cur->iface, &proc_offset, &type_offset);
610 write_stubdesc();
612 print_proxy( "#if !defined(__RPC_WIN32__)\n");
613 print_proxy( "#error Currently only Wine and WIN32 are supported.\n");
614 print_proxy( "#endif\n");
615 print_proxy( "\n");
616 write_procformatstring(proxy, ifaces, 1);
617 write_typeformatstring(proxy, ifaces, 1);
619 fprintf(proxy, "static const CInterfaceProxyVtbl* const _%s_ProxyVtblList[] =\n", file_id);
620 fprintf(proxy, "{\n");
621 if (ifaces)
622 LIST_FOR_EACH_ENTRY( cur, ifaces, ifref_t, entry )
623 if(cur->iface->ref && cur->iface->funcs &&
624 is_object(cur->iface->attrs) && !is_local(cur->iface->attrs))
625 fprintf(proxy, " (const CInterfaceProxyVtbl*)&_%sProxyVtbl,\n", cur->iface->name);
627 fprintf(proxy, " 0\n");
628 fprintf(proxy, "};\n");
629 fprintf(proxy, "\n");
631 fprintf(proxy, "static const CInterfaceStubVtbl* const _%s_StubVtblList[] =\n", file_id);
632 fprintf(proxy, "{\n");
633 if (ifaces)
634 LIST_FOR_EACH_ENTRY( cur, ifaces, ifref_t, entry )
635 if(cur->iface->ref && cur->iface->funcs &&
636 is_object(cur->iface->attrs) && !is_local(cur->iface->attrs))
637 fprintf(proxy, " (const CInterfaceStubVtbl*)&_%sStubVtbl,\n", cur->iface->name);
638 fprintf(proxy, " 0\n");
639 fprintf(proxy, "};\n");
640 fprintf(proxy, "\n");
642 fprintf(proxy, "static PCInterfaceName const _%s_InterfaceNamesList[] =\n", file_id);
643 fprintf(proxy, "{\n");
644 if (ifaces)
645 LIST_FOR_EACH_ENTRY( cur, ifaces, ifref_t, entry )
646 if(cur->iface->ref && cur->iface->funcs &&
647 is_object(cur->iface->attrs) && !is_local(cur->iface->attrs))
648 fprintf(proxy, " \"%s\",\n", cur->iface->name);
649 fprintf(proxy, " 0\n");
650 fprintf(proxy, "};\n");
651 fprintf(proxy, "\n");
653 fprintf(proxy, "#define _%s_CHECK_IID(n) IID_GENERIC_CHECK_IID(_%s, pIID, n)\n", file_id, file_id);
654 fprintf(proxy, "\n");
655 fprintf(proxy, "int __stdcall _%s_IID_Lookup(const IID* pIID, int* pIndex)\n", file_id);
656 fprintf(proxy, "{\n");
657 c = 0;
658 if (ifaces)
659 LIST_FOR_EACH_ENTRY( cur, ifaces, ifref_t, entry )
660 if(cur->iface->ref)
662 fprintf(proxy, " if (!_%s_CHECK_IID(%d))\n", file_id, c);
663 fprintf(proxy, " {\n");
664 fprintf(proxy, " *pIndex = %d;\n", c);
665 fprintf(proxy, " return 1;\n");
666 fprintf(proxy, " }\n");
667 c++;
669 fprintf(proxy, " return 0;\n");
670 fprintf(proxy, "}\n");
671 fprintf(proxy, "\n");
673 fprintf(proxy, "const ExtendedProxyFileInfo %s_ProxyFileInfo =\n", file_id);
674 fprintf(proxy, "{\n");
675 fprintf(proxy, " (const PCInterfaceProxyVtblList*)&_%s_ProxyVtblList,\n", file_id);
676 fprintf(proxy, " (const PCInterfaceStubVtblList*)&_%s_StubVtblList,\n", file_id);
677 fprintf(proxy, " _%s_InterfaceNamesList,\n", file_id);
678 fprintf(proxy, " 0,\n");
679 fprintf(proxy, " &_%s_IID_Lookup,\n", file_id);
680 fprintf(proxy, " %d,\n", c);
681 fprintf(proxy, " 1,\n");
682 fprintf(proxy, " 0,\n");
683 fprintf(proxy, " 0,\n");
684 fprintf(proxy, " 0,\n");
685 fprintf(proxy, " 0\n");
686 fprintf(proxy, "};\n");
688 fclose(proxy);