Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
afcab242
Commit
afcab242
authored
Feb 23, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed the useless proxy.h header file.
Fixed a couple of warnings.
parent
2db20ef1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
32 deletions
+2
-32
client.c
tools/widl/client.c
+0
-2
parser.y
tools/widl/parser.y
+0
-1
proxy.h
tools/widl/proxy.h
+0
-26
server.c
tools/widl/server.c
+1
-2
widl.c
tools/widl/widl.c
+0
-1
widl.h
tools/widl/widl.h
+1
-0
No files found.
tools/widl/client.c
View file @
afcab242
...
...
@@ -414,8 +414,6 @@ static void init_client(void)
void
write_client
(
ifref_t
*
ifaces
)
{
ifref_t
*
lcur
=
ifaces
;
char
*
file_id
=
client_token
;
int
c
;
if
(
!
do_client
)
return
;
...
...
tools/widl/parser.y
View file @
afcab242
...
...
@@ -37,7 +37,6 @@
#include "utils.h"
#include "parser.h"
#include "header.h"
#include "proxy.h"
#include "typelib.h"
#if defined(YYBYACC)
...
...
tools/widl/proxy.h
deleted
100644 → 0
View file @
2db20ef1
/*
* 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
tools/widl/server.c
View file @
afcab242
...
...
@@ -142,6 +142,7 @@ unsigned int get_required_stack_size(type_t *type)
default:
error
(
"Unknown/unsupported type: %s
\n
"
,
type
->
name
);
return
0
;
}
}
...
...
@@ -424,8 +425,6 @@ static void init_server(void)
void
write_server
(
ifref_t
*
ifaces
)
{
ifref_t
*
lcur
=
ifaces
;
char
*
file_id
=
server_token
;
int
c
;
if
(
!
do_server
)
return
;
...
...
tools/widl/widl.c
View file @
afcab242
...
...
@@ -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: */
...
...
tools/widl/widl.h
View file @
afcab242
...
...
@@ -60,6 +60,7 @@ 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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment