winedump: Remove unused parameter from codeview_dump_linetab(). codeview_dump_linetab().
This commit is contained in:
parent
9c65376dcf
commit
64de0876e4
|
@ -1383,7 +1383,7 @@ int codeview_dump_symbols(const void* root, unsigned long size)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void codeview_dump_linetab(const char* linetab, DWORD size, BOOL pascal_str, const char* pfx)
|
||||
void codeview_dump_linetab(const char* linetab, BOOL pascal_str, const char* pfx)
|
||||
{
|
||||
const char* ptr = linetab;
|
||||
int nfile, nseg, nline;
|
||||
|
|
|
@ -542,7 +542,7 @@ static void pdb_dump_symbols(struct pdb_reader* reader, PDB_STREAM_INDEXES* sidx
|
|||
|
||||
/* line number info */
|
||||
if (lineno_size)
|
||||
codeview_dump_linetab((const char*)modimage + symbol_size, lineno_size, TRUE, " ");
|
||||
codeview_dump_linetab((const char*)modimage + symbol_size, TRUE, " ");
|
||||
/* anyway, lineno_size doesn't see to really be the size of the line number information, and
|
||||
* it's not clear yet when to call for linetab2...
|
||||
*/
|
||||
|
|
|
@ -255,7 +255,7 @@ void fnt_dump( void );
|
|||
int codeview_dump_symbols(const void* root, unsigned long size);
|
||||
int codeview_dump_types_from_offsets(const void* table, const DWORD* offsets, unsigned num_types);
|
||||
int codeview_dump_types_from_block(const void* table, unsigned long len);
|
||||
void codeview_dump_linetab(const char* linetab, DWORD size, BOOL pascal_str, const char* pfx);
|
||||
void codeview_dump_linetab(const char* linetab, BOOL pascal_str, const char* pfx);
|
||||
void codeview_dump_linetab2(const char* linetab, DWORD size, const char* strimage, DWORD strsize, const char* pfx);
|
||||
|
||||
void dump_stabs(const void* pv_stabs, unsigned szstabs, const char* stabstr, unsigned szstr);
|
||||
|
|
Loading…
Reference in New Issue