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
f9e73f97
Commit
f9e73f97
authored
Jul 28, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 29, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Name names hash table segment in MSFT_SegDir struct.
parent
aada2c7b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
typelib.c
dlls/oleaut32/typelib.c
+2
-2
typelib.h
dlls/oleaut32/typelib.h
+2
-2
typelib_struct.h
tools/widl/typelib_struct.h
+2
-2
No files found.
dlls/oleaut32/typelib.c
View file @
f9e73f97
...
...
@@ -9775,8 +9775,8 @@ static HRESULT WINAPI ICreateTypeLib2_fnSaveAllChanges(ICreateTypeLib2 *iface)
TRACE
(
"impfiles at: 0x%x
\n
"
,
running_offset
);
tmp_fill_segdir_seg
(
&
file
.
segdir
.
pImpFiles
,
&
file
.
impfile_seg
,
&
running_offset
);
TRACE
(
"
res07
at: 0x%x
\n
"
,
running_offset
);
tmp_fill_segdir_seg
(
&
file
.
segdir
.
res07
,
&
file
.
namehash_seg
,
&
running_offset
);
TRACE
(
"
namehashtab
at: 0x%x
\n
"
,
running_offset
);
tmp_fill_segdir_seg
(
&
file
.
segdir
.
pNameHashTab
,
&
file
.
namehash_seg
,
&
running_offset
);
TRACE
(
"nametab at: 0x%x
\n
"
,
running_offset
);
tmp_fill_segdir_seg
(
&
file
.
segdir
.
pNametab
,
&
file
.
name_seg
,
&
running_offset
);
...
...
dlls/oleaut32/typelib.h
View file @
f9e73f97
...
...
@@ -104,8 +104,8 @@ typedef struct tagMSFT_SegDir {
/* hash table w offsets to guid????? */
/*6*/
MSFT_pSeg
pGuidTab
;
/* all guids are stored here together with */
/* offset in some table???? */
/*7*/
MSFT_pSeg
res07
;
/* always created, always same size (0x200) */
/*
purpose largely unknown
*/
/*7*/
MSFT_pSeg
pNameHashTab
;
/* always created, always same size (0x200) */
/*
hash table with offsets to names
*/
/*8*/
MSFT_pSeg
pNametab
;
/* name tables */
/*9*/
MSFT_pSeg
pStringtab
;
/* string table */
/*A*/
MSFT_pSeg
pTypdescTab
;
/* table with type descriptors */
...
...
tools/widl/typelib_struct.h
View file @
f9e73f97
...
...
@@ -101,8 +101,8 @@ typedef struct tagMSFT_SegDir {
/* hash table w offsets to guid????? */
/*6*/
MSFT_pSeg
pGuidTab
;
/* all guids are stored here together with */
/* offset in some table???? */
/*7*/
MSFT_pSeg
res07
;
/* always created, always same size (0x200) */
/*
purpose largely unknown
*/
/*7*/
MSFT_pSeg
pNameHashTab
;
/* always created, always same size (0x200) */
/*
hash table with offsets to names
*/
/*8*/
MSFT_pSeg
pNametab
;
/* name tables */
/*9*/
MSFT_pSeg
pStringtab
;
/* string table */
/*A*/
MSFT_pSeg
pTypdescTab
;
/* table with type descriptors */
...
...
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