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
39b15066
Commit
39b15066
authored
Jun 03, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Add support for generating new-style interpreted stubs for servers.
parent
e95d5a8e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
server.c
tools/widl/server.c
+2
-2
No files found.
tools/widl/server.c
View file @
39b15066
...
...
@@ -270,7 +270,7 @@ static void write_dispatchtable(type_t *iface)
{
var_t
*
func
=
stmt
->
u
.
var
;
if
(
is_interpreted_func
(
iface
,
func
))
print_server
(
"
NdrServerCall,
\n
"
);
print_server
(
"
%s,
\n
"
,
stub_mode
==
MODE_Oif
?
"NdrServerCall2"
:
"NdrServerCall
"
);
else
print_server
(
"%s_%s,
\n
"
,
iface
->
name
,
get_name
(
func
));
method_count
++
;
...
...
@@ -354,7 +354,7 @@ static void write_stubdescriptor(type_t *iface, int expr_eval_routines)
print_server
(
"0,
\n
"
);
print_server
(
"__MIDL_TypeFormatString.Format,
\n
"
);
print_server
(
"1, /* -error bounds_check flag */
\n
"
);
print_server
(
"0x
10001, /* Ndr library version */
\n
"
);
print_server
(
"0x
%x, /* Ndr library version */
\n
"
,
stub_mode
==
MODE_Oif
?
0x50002
:
0x10001
);
print_server
(
"0,
\n
"
);
print_server
(
"0x50100a4, /* MIDL Version 5.1.164 */
\n
"
);
print_server
(
"0,
\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