Index: syzygy/experimental/pdb_dumper/pdb_dump.h |
diff --git a/syzygy/experimental/pdb_dumper/pdb_dump.h b/syzygy/experimental/pdb_dumper/pdb_dump.h |
index 2d2f94efa92a3289b92273cca01baf155a876f36..e60d9ac596c2cbf0c2a781970c448156faa9f749 100644 |
--- a/syzygy/experimental/pdb_dumper/pdb_dump.h |
+++ b/syzygy/experimental/pdb_dumper/pdb_dump.h |
@@ -20,6 +20,7 @@ |
#include "base/files/file_path.h" |
#include "syzygy/application/application.h" |
+#include "syzygy/pdb/pdb_stream.h" |
#include "syzygy/pdb/pdb_util.h" |
namespace pdb { |
@@ -58,6 +59,10 @@ class PdbDumpApp : public application::AppImplBase { |
// Dumps @p dbi_stream to out(). |
void DumpDbiStream(const DbiStream& dbi_stream); |
+ // Dumps @p fpo_stream to out(). |
+ void DumpFpoStream(pdb::PdbStream* fpo_stream, |
+ pdb::PdbStream* new_fpo_stream); |
+ |
// The PDB files to dump. |
std::vector<base::FilePath> pdb_files_; |
@@ -68,6 +73,9 @@ class PdbDumpApp : public application::AppImplBase { |
// Iff true, the symbol record stream will be dumped. Default to false. |
bool dump_symbol_record_; |
+ // Iff true, the FPO stream will be dumped. Default to false. |
+ bool dump_fpo_; |
+ |
// Iff true, the type info stream will be dumped. Default to false. |
bool dump_type_info_; |