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
1a25936c
Commit
1a25936c
authored
Jan 26, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Add a few more fields in the stub descriptor.
parent
6c559caf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
7 deletions
+20
-7
proxy.c
tools/widl/proxy.c
+20
-7
No files found.
tools/widl/proxy.c
View file @
1a25936c
...
...
@@ -67,18 +67,31 @@ static int print_proxy( const char *format, ... )
static
void
write_stubdescproto
(
void
)
{
print_proxy
(
"
extern
const MIDL_STUB_DESC Object_StubDesc;
\n
"
);
print_proxy
(
"
static
const MIDL_STUB_DESC Object_StubDesc;
\n
"
);
print_proxy
(
"
\n
"
);
}
static
void
write_stubdesc
(
void
)
{
print_proxy
(
"const MIDL_STUB_DESC Object_StubDesc = {
\n
"
);
print_proxy
(
" 0,
\n
"
);
print_proxy
(
" NdrOleAllocate,
\n
"
);
print_proxy
(
" NdrOleFree,
\n
"
);
print_proxy
(
" {0}, 0, 0, 0, 0,
\n
"
);
print_proxy
(
" 0 /* __MIDL_TypeFormatString.Format */
\n
"
);
print_proxy
(
"static const MIDL_STUB_DESC Object_StubDesc =
\n
{
\n
"
);
indent
++
;
print_proxy
(
"0,
\n
"
);
print_proxy
(
"NdrOleAllocate,
\n
"
);
print_proxy
(
"NdrOleFree,
\n
"
);
print_proxy
(
"{0}, 0, 0, 0, 0,
\n
"
);
print_proxy
(
"__MIDL_TypeFormatString.Format,
\n
"
);
print_proxy
(
"1, /* -error bounds_check flag */
\n
"
);
print_proxy
(
"0x10001, /* Ndr library version */
\n
"
);
print_proxy
(
"0,
\n
"
);
print_proxy
(
"0x50100a4, /* MIDL Version 5.1.164 */
\n
"
);
print_proxy
(
"0,
\n
"
);
print_proxy
(
"0,
\n
"
);
print_proxy
(
"0, /* notify & notify_flag routine table */
\n
"
);
print_proxy
(
"1, /* Flags */
\n
"
);
print_proxy
(
"0, /* Reserved3 */
\n
"
);
print_proxy
(
"0, /* Reserved4 */
\n
"
);
print_proxy
(
"0 /* Reserved5 */
\n
"
);
indent
--
;
print_proxy
(
"};
\n
"
);
print_proxy
(
"
\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