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
bec09931
Commit
bec09931
authored
Apr 16, 2006
by
Eric Kohl
Committed by
Alexandre Julliard
Apr 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Support multiple RPC interfaces per binary.
parent
8211dd82
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
client.c
tools/widl/client.c
+3
-3
server.c
tools/widl/server.c
+3
-3
No files found.
tools/widl/client.c
View file @
bec09931
...
...
@@ -332,7 +332,7 @@ static void write_bindinghandledecl(type_t *iface)
static
void
write_stubdescdecl
(
type_t
*
iface
)
{
print_client
(
"
extern
const MIDL_STUB_DESC %s_StubDesc;
\n
"
,
iface
->
name
);
print_client
(
"
static
const MIDL_STUB_DESC %s_StubDesc;
\n
"
,
iface
->
name
);
fprintf
(
client
,
"
\n
"
);
}
...
...
@@ -433,8 +433,8 @@ static void write_formatstringsdecl(type_t *iface)
write_formatdesc
(
"TYPE"
);
write_formatdesc
(
"PROC"
);
fprintf
(
client
,
"
\n
"
);
print_client
(
"
extern
const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;
\n
"
);
print_client
(
"
extern
const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;
\n
"
);
print_client
(
"
static
const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;
\n
"
);
print_client
(
"
static
const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;
\n
"
);
print_client
(
"
\n
"
);
}
...
...
tools/widl/server.c
View file @
bec09931
...
...
@@ -481,7 +481,7 @@ static void write_dispatchtable(type_t *iface)
static
void
write_stubdescdecl
(
type_t
*
iface
)
{
print_server
(
"
extern
const MIDL_STUB_DESC %s_StubDesc;
\n
"
,
iface
->
name
);
print_server
(
"
static
const MIDL_STUB_DESC %s_StubDesc;
\n
"
,
iface
->
name
);
fprintf
(
server
,
"
\n
"
);
}
...
...
@@ -578,8 +578,8 @@ static void write_formatstringsdecl(type_t *iface)
write_formatdesc
(
"TYPE"
);
write_formatdesc
(
"PROC"
);
fprintf
(
server
,
"
\n
"
);
print_server
(
"
extern
const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;
\n
"
);
print_server
(
"
extern
const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;
\n
"
);
print_server
(
"
static
const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;
\n
"
);
print_server
(
"
static
const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;
\n
"
);
print_server
(
"
\n
"
);
}
...
...
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