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
4812abc2
Commit
4812abc2
authored
May 13, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
May 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: res50 is number of impinfos. Fix its usage.
parent
e8f4fff3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
typelib_struct.h
tools/widl/typelib_struct.h
+1
-1
write_msft.c
tools/widl/write_msft.c
+3
-4
No files found.
tools/widl/typelib_struct.h
View file @
4812abc2
...
...
@@ -76,7 +76,7 @@ typedef struct tagMSFT_Header {
INT
res44
;
/* unknown always: 0x20 (guid hash size?) */
INT
res48
;
/* unknown always: 0x80 (name hash size?) */
INT
dispatchpos
;
/* HREFTYPE to IDispatch, or -1 if no IDispatch */
/*0x50*/
INT
res50
;
/* is zero becomes one when an interface is derived
*/
/*0x50*/
INT
nimpinfos
;
/* number of impinfos
*/
}
MSFT_Header
;
/* segments in the type lib file have a structure like this: */
...
...
tools/widl/write_msft.c
View file @
4812abc2
...
...
@@ -156,7 +156,7 @@ static void ctl2_init_header(
typelib
->
typelib_header
.
res44
=
0x20
;
typelib
->
typelib_header
.
res48
=
0x80
;
typelib
->
typelib_header
.
dispatchpos
=
-
1
;
typelib
->
typelib_header
.
res50
=
0
;
typelib
->
typelib_header
.
nimpinfos
=
0
;
}
/****************************************************************************
...
...
@@ -608,6 +608,8 @@ static int alloc_importinfo(
}
}
impinfo
->
flags
|=
typelib
->
typelib_header
.
nimpinfos
++
;
offset
=
ctl2_alloc_segment
(
typelib
,
MSFT_SEG_IMPORTINFO
,
sizeof
(
MSFT_ImpInfo
),
0
);
if
(
offset
==
-
1
)
return
-
1
;
...
...
@@ -1801,9 +1803,6 @@ static void add_dispatch(msft_typelib_t *typelib)
impinfo
.
oImpFile
=
impfile_offset
;
impinfo
.
oGuid
=
ctl2_alloc_guid
(
typelib
,
&
guidentry
);
typelib
->
typelib_header
.
dispatchpos
=
alloc_importinfo
(
typelib
,
&
impinfo
)
|
0x01
;
typelib
->
typelib_header
.
res50
=
1
;
}
static
void
add_dispinterface_typeinfo
(
msft_typelib_t
*
typelib
,
type_t
*
dispinterface
)
...
...
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