Commit f9e73f97 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

oleaut32: Name names hash table segment in MSFT_SegDir struct.

parent aada2c7b
...@@ -9775,8 +9775,8 @@ static HRESULT WINAPI ICreateTypeLib2_fnSaveAllChanges(ICreateTypeLib2 *iface) ...@@ -9775,8 +9775,8 @@ static HRESULT WINAPI ICreateTypeLib2_fnSaveAllChanges(ICreateTypeLib2 *iface)
TRACE("impfiles at: 0x%x\n", running_offset); TRACE("impfiles at: 0x%x\n", running_offset);
tmp_fill_segdir_seg(&file.segdir.pImpFiles, &file.impfile_seg, &running_offset); tmp_fill_segdir_seg(&file.segdir.pImpFiles, &file.impfile_seg, &running_offset);
TRACE("res07 at: 0x%x\n", running_offset); TRACE("namehashtab at: 0x%x\n", running_offset);
tmp_fill_segdir_seg(&file.segdir.res07, &file.namehash_seg, &running_offset); tmp_fill_segdir_seg(&file.segdir.pNameHashTab, &file.namehash_seg, &running_offset);
TRACE("nametab at: 0x%x\n", running_offset); TRACE("nametab at: 0x%x\n", running_offset);
tmp_fill_segdir_seg(&file.segdir.pNametab, &file.name_seg, &running_offset); tmp_fill_segdir_seg(&file.segdir.pNametab, &file.name_seg, &running_offset);
......
...@@ -104,8 +104,8 @@ typedef struct tagMSFT_SegDir { ...@@ -104,8 +104,8 @@ typedef struct tagMSFT_SegDir {
/* hash table w offsets to guid????? */ /* hash table w offsets to guid????? */
/*6*/MSFT_pSeg pGuidTab; /* all guids are stored here together with */ /*6*/MSFT_pSeg pGuidTab; /* all guids are stored here together with */
/* offset in some table???? */ /* offset in some table???? */
/*7*/MSFT_pSeg res07; /* always created, always same size (0x200) */ /*7*/MSFT_pSeg pNameHashTab; /* always created, always same size (0x200) */
/* purpose largely unknown */ /* hash table with offsets to names */
/*8*/MSFT_pSeg pNametab; /* name tables */ /*8*/MSFT_pSeg pNametab; /* name tables */
/*9*/MSFT_pSeg pStringtab; /* string table */ /*9*/MSFT_pSeg pStringtab; /* string table */
/*A*/MSFT_pSeg pTypdescTab; /* table with type descriptors */ /*A*/MSFT_pSeg pTypdescTab; /* table with type descriptors */
......
...@@ -101,8 +101,8 @@ typedef struct tagMSFT_SegDir { ...@@ -101,8 +101,8 @@ typedef struct tagMSFT_SegDir {
/* hash table w offsets to guid????? */ /* hash table w offsets to guid????? */
/*6*/MSFT_pSeg pGuidTab; /* all guids are stored here together with */ /*6*/MSFT_pSeg pGuidTab; /* all guids are stored here together with */
/* offset in some table???? */ /* offset in some table???? */
/*7*/MSFT_pSeg res07; /* always created, always same size (0x200) */ /*7*/MSFT_pSeg pNameHashTab; /* always created, always same size (0x200) */
/* purpose largely unknown */ /* hash table with offsets to names */
/*8*/MSFT_pSeg pNametab; /* name tables */ /*8*/MSFT_pSeg pNametab; /* name tables */
/*9*/MSFT_pSeg pStringtab; /* string table */ /*9*/MSFT_pSeg pStringtab; /* string table */
/*A*/MSFT_pSeg pTypdescTab; /* table with type descriptors */ /*A*/MSFT_pSeg pTypdescTab; /* table with type descriptors */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment