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
b17d1c14
Commit
b17d1c14
authored
Aug 15, 2006
by
Dan Hipschman
Committed by
Alexandre Julliard
Aug 16, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Fix NdrConformantArrayUnmarshall calls in generated code.
parent
16d4e712
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
proxy.c
tools/widl/proxy.c
+4
-4
No files found.
tools/widl/proxy.c
View file @
b17d1c14
...
...
@@ -449,8 +449,8 @@ static void unmarshall_copy_arg( var_t *arg )
expr
=
get_attrp
(
arg
->
attrs
,
ATTR_SIZEIS
);
if
(
expr
)
{
print_proxy
(
"NdrConformantArrayUnmarshall( &_StubMsg, (unsigned char*
)
%s, "
,
arg
->
name
);
fprintf
(
proxy
,
"&__MIDL_TypeFormatString.Format[%d]);
\n
"
,
index
);
print_proxy
(
"NdrConformantArrayUnmarshall( &_StubMsg, (unsigned char*
*)&
%s, "
,
arg
->
name
);
fprintf
(
proxy
,
"&__MIDL_TypeFormatString.Format[%d]
, 0
);
\n
"
,
index
);
return
;
}
...
...
@@ -481,8 +481,8 @@ static void unmarshall_copy_arg( var_t *arg )
case
RPC_FC_C_CSTRING
:
case
RPC_FC_C_WSTRING
:
case
RPC_FC_CARRAY
:
print_proxy
(
"NdrConformantArrayUnmarshall( &_StubMsg, (unsigned char*
)
%s, "
,
arg
->
name
);
fprintf
(
proxy
,
"&__MIDL_TypeFormatString.Format[%d]);
\n
"
,
index
);
print_proxy
(
"NdrConformantArrayUnmarshall( &_StubMsg, (unsigned char*
*)&
%s, "
,
arg
->
name
);
fprintf
(
proxy
,
"&__MIDL_TypeFormatString.Format[%d]
, 0
);
\n
"
,
index
);
break
;
case
RPC_FC_BOGUS_STRUCT
:
...
...
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