-
-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create global variables from PDB (#4021)
- Loading branch information
Showing
24 changed files
with
1,909 additions
and
1,174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
176 changes: 93 additions & 83 deletions
176
librz/analysis/type_pdb.c → librz/analysis/pdb_process.c
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
// SPDX-FileCopyrightText: 2021 Basstorm <[email protected]> | ||
// SPDX-License-Identifier: LGPL-3.0-only | ||
|
||
#ifndef PDB_PRIVATE_INCLUDE_H_ | ||
#define PDB_PRIVATE_INCLUDE_H_ | ||
|
||
#include <rz_pdb.h> | ||
#include "dbi.h" | ||
#include "gdata.h" | ||
#include "omap.h" | ||
#include "stream_pe.h" | ||
#include "tpi.h" | ||
#include "symbol.h" | ||
|
||
RZ_IPI RzPdbMsfStream *pdb_raw_steam(RzPdb *pdb, ut16 index); | ||
RZ_IPI PDBSymbolTable *pdb_global_symbols(RzPdb *pdb); | ||
|
||
#ifndef PDB_PRIVATE_INCLUDE_H_ | ||
#define PDB_PRIVATE_INCLUDE_H_ | ||
// OMAP | ||
RZ_IPI bool parse_omap_stream(RzPdb *pdb, RzPdbMsfStream *stream); | ||
RZ_IPI void free_omap_stream(RzPdbOmapStream *stream); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.