Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
6744d4e3
Commit
6744d4e3
authored
Dec 12, 2005
by
Eric Kohl
Committed by
Alexandre Julliard
Dec 12, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Support multiple interfaces per file.
parent
f4356a64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
33 deletions
+53
-33
client.c
tools/widl/client.c
+27
-17
server.c
tools/widl/server.c
+26
-16
No files found.
tools/widl/client.c
View file @
6744d4e3
...
...
@@ -386,37 +386,47 @@ static void init_client(void)
void
write_client
(
ifref_t
*
ifaces
)
{
ifref_t
*
lcur
=
ifaces
;
ifref_t
*
iface
=
ifaces
;
if
(
!
do_client
)
return
;
if
(
!
lcur
)
if
(
!
iface
)
return
;
END_OF_LIST
(
lcur
);
END_OF_LIST
(
iface
);
init_client
();
if
(
!
client
)
return
;
write_formatstringsdecl
(
lcur
->
iface
);
write_implicithandledecl
(
lcur
->
iface
);
while
(
iface
)
{
fprintf
(
client
,
"/*****************************************************************************
\n
"
);
fprintf
(
client
,
" * %s interface
\n
"
,
iface
->
iface
->
name
);
fprintf
(
client
,
" */
\n
"
);
fprintf
(
client
,
"
\n
"
);
write_clientinterfacedecl
(
lcur
->
iface
);
write_stubdescdecl
(
lcur
->
iface
);
write_bindinghandledecl
(
lcur
->
iface
);
write_formatstringsdecl
(
iface
->
iface
);
write_implicithandledecl
(
iface
->
iface
);
write_function_stubs
(
lcur
->
iface
);
write_stubdescriptor
(
lcur
->
iface
);
write_clientinterfacedecl
(
iface
->
iface
);
write_stubdescdecl
(
iface
->
iface
);
write_bindinghandledecl
(
iface
->
iface
);
print_client
(
"#if !defined(__RPC_WIN32__)
\n
"
);
print_client
(
"#error Invalid build platform for this stub.
\n
"
);
print_client
(
"#endif
\n
"
);
fprintf
(
client
,
"
\n
"
);
write_function_stubs
(
iface
->
iface
);
write_stubdescriptor
(
iface
->
iface
);
print_client
(
"#if !defined(__RPC_WIN32__)
\n
"
);
print_client
(
"#error Invalid build platform for this stub.
\n
"
);
print_client
(
"#endif
\n
"
);
fprintf
(
client
,
"
\n
"
);
write_procformatstring
(
client
,
lcur
->
iface
);
write_typeformatstring
(
client
);
write_procformatstring
(
client
,
iface
->
iface
);
write_typeformatstring
(
client
);
fprintf
(
client
,
"
\n
"
);
fprintf
(
client
,
"
\n
"
);
iface
=
PREV_LINK
(
iface
);
}
fclose
(
client
);
}
tools/widl/server.c
View file @
6744d4e3
...
...
@@ -432,36 +432,46 @@ static void init_server(void)
void
write_server
(
ifref_t
*
ifaces
)
{
ifref_t
*
lcur
=
ifaces
;
ifref_t
*
iface
=
ifaces
;
if
(
!
do_server
)
return
;
if
(
!
lcur
)
if
(
!
iface
)
return
;
END_OF_LIST
(
lcur
);
END_OF_LIST
(
iface
);
init_server
();
if
(
!
server
)
return
;
write_formatstringsdecl
(
lcur
->
iface
);
write_serverinterfacedecl
(
lcur
->
iface
);
write_stubdescdecl
(
lcur
->
iface
);
while
(
iface
)
{
fprintf
(
server
,
"/*****************************************************************************
\n
"
);
fprintf
(
server
,
" * %s interface
\n
"
,
iface
->
iface
->
name
);
fprintf
(
server
,
" */
\n
"
);
fprintf
(
server
,
"
\n
"
);
write_function_stubs
(
lcur
->
iface
);
write_formatstringsdecl
(
iface
->
iface
);
write_serverinterfacedecl
(
iface
->
iface
);
write_stubdescdecl
(
iface
->
iface
);
write_stubdescriptor
(
lcur
->
iface
);
write_dispatchtable
(
lcur
->
iface
);
write_function_stubs
(
iface
->
iface
);
print_server
(
"#if !defined(__RPC_WIN32__)
\n
"
);
print_server
(
"#error Invalid build platform for this stub.
\n
"
);
print_server
(
"#endif
\n
"
);
fprintf
(
server
,
"
\n
"
);
write_stubdescriptor
(
iface
->
iface
);
write_dispatchtable
(
iface
->
iface
);
write_procformatstring
(
server
,
lcur
->
iface
);
write_typeformatstring
(
server
);
print_server
(
"#if !defined(__RPC_WIN32__)
\n
"
);
print_server
(
"#error Invalid build platform for this stub.
\n
"
);
print_server
(
"#endif
\n
"
);
fprintf
(
server
,
"
\n
"
);
fprintf
(
server
,
"
\n
"
);
write_procformatstring
(
server
,
iface
->
iface
);
write_typeformatstring
(
server
);
fprintf
(
server
,
"
\n
"
);
iface
=
PREV_LINK
(
iface
);
}
fclose
(
server
);
}
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