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
0edfacdb
Commit
0edfacdb
authored
Jan 19, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Generate proxy/client/server files when requested explicitly even if they are empty.
parent
267987b8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
7 deletions
+6
-7
client.c
tools/widl/client.c
+1
-1
proxy.c
tools/widl/proxy.c
+2
-4
server.c
tools/widl/server.c
+1
-1
widl.c
tools/widl/widl.c
+1
-1
widl.h
tools/widl/widl.h
+1
-0
No files found.
tools/widl/client.c
View file @
0edfacdb
...
...
@@ -432,7 +432,7 @@ void write_client(ifref_t *ifaces)
if
(
!
do_client
)
return
;
if
(
!
iface
)
if
(
do_everything
&&
!
ifaces
)
return
;
END_OF_LIST
(
iface
);
...
...
tools/widl/proxy.c
View file @
0edfacdb
...
...
@@ -999,12 +999,12 @@ void write_proxies(ifref_t *ifaces)
int
c
;
if
(
!
do_proxies
)
return
;
if
(
!
lcur
)
return
;
END_OF_LIST
(
lcur
);
if
(
do_everything
&&
!
ifaces
)
return
;
init_proxy
(
ifaces
);
if
(
!
proxy
)
return
;
END_OF_LIST
(
lcur
);
cur
=
lcur
;
while
(
cur
)
{
if
(
is_object
(
cur
->
iface
->
attrs
)
&&
!
is_local
(
cur
->
iface
->
attrs
))
...
...
@@ -1012,8 +1012,6 @@ void write_proxies(ifref_t *ifaces)
cur
=
PREV_LINK
(
cur
);
}
if
(
!
proxy
)
return
;
write_stubdesc
();
print_proxy
(
"#if !defined(__RPC_WIN32__)
\n
"
);
...
...
tools/widl/server.c
View file @
0edfacdb
...
...
@@ -572,7 +572,7 @@ void write_server(ifref_t *ifaces)
if
(
!
do_server
)
return
;
if
(
!
ifaces
)
if
(
do_everything
&&
!
ifaces
)
return
;
END_OF_LIST
(
iface
);
...
...
tools/widl/widl.c
View file @
0edfacdb
...
...
@@ -87,7 +87,7 @@ int debuglevel = DEBUGLEVEL_NONE;
int
parser_debug
,
yy_flex_debug
;
int
pedantic
=
0
;
static
int
do_everything
=
1
;
int
do_everything
=
1
;
int
preprocess_only
=
0
;
int
do_header
=
0
;
int
do_typelib
=
0
;
...
...
tools/widl/widl.h
View file @
0edfacdb
...
...
@@ -36,6 +36,7 @@ extern int debuglevel;
extern
int
win32
;
extern
int
pedantic
;
extern
int
do_everything
;
extern
int
do_header
;
extern
int
do_typelib
;
extern
int
do_proxies
;
...
...
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