merge in Winehq changes to reduce noise

svn path=/trunk/; revision=13772
This commit is contained in:
Steven Edwards 2005-02-27 22:55:54 +00:00
parent 8619cecdb3
commit 219b034127
10 changed files with 23 additions and 86 deletions

View file

@ -1,5 +1,21 @@
ChangeLog
2005-02-27 sedwards
tools/widl/y.tab.c
tools/widl/parser.y
tools/widl/widl.c
tools/widl/widl.h
tools/widl/server.c
tools/widl/typelib.c
Merge in Winehq changes to reduce noise.
tools/widl/server.h
tools/widl/client.h
tools/widl/proxy.h
Deleted unneeded headers.
2005-02-26 ekohl
tools/widl/server.c

View file

@ -1,26 +0,0 @@
/*
* IDL Compiler
*
* Copyright 2005 Eric Kohl
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WIDL_CLIENT_H
#define __WIDL_CLIENT_H
extern void write_client(ifref_t *ifaces);
#endif

View file

@ -35,10 +35,7 @@
#include "utils.h"
#include "parser.h"
#include "header.h"
#include "proxy.h"
#include "typelib.h"
#include "client.h"
#include "server.h"
#if defined(YYBYACC)
/* Berkeley yacc (byacc) doesn't seem to know about these */

View file

@ -1,26 +0,0 @@
/*
* IDL Compiler
*
* Copyright 2002 Ove Kaaven
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WIDL_PROXY_H
#define __WIDL_PROXY_H
extern void write_proxies(ifref_t *ifaces);
#endif

View file

@ -255,6 +255,7 @@ unsigned int get_required_buffer_size(type_t *type)
default:
error("Unknown/unsupported type: %s\n", type->name);
return 0;
}
}

View file

@ -1,26 +0,0 @@
/*
* IDL Compiler
*
* Copyright 2005 Eric Kohl
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WIDL_SERVER_H
#define __WIDL_SERVER_H
extern void write_server(ifref_t *ifaces);
#endif

View file

@ -144,7 +144,8 @@ unsigned short get_type_vt(type_t *t)
if(match(t->name, "IDispatch"))
return VT_DISPATCH;
return VT_USERDEFINED;
case RPC_FC_ENUM16:
case RPC_FC_STRUCT:
case RPC_FC_PSTRUCT:
return VT_USERDEFINED;

View file

@ -36,7 +36,6 @@
#include "widl.h"
#include "utils.h"
#include "parser.h"
#include "proxy.h"
#include "wine/wpp.h"
/* future options to reserve characters for: */

View file

@ -60,4 +60,8 @@ extern int char_number;
extern FILE* header;
extern void write_proxies(ifref_t *ifaces);
extern void write_client(ifref_t *ifaces);
extern void write_server(ifref_t *ifaces);
#endif

View file

@ -164,10 +164,7 @@
#include "utils.h"
#include "parser.h"
#include "header.h"
#include "proxy.h"
#include "typelib.h"
#include "client.h"
#include "server.h"
#if defined(YYBYACC)
/* Berkeley yacc (byacc) doesn't seem to know about these */