blob: 8eb880833f51b44a16a0135d416afbaf56e833bd [file] [log] [blame]
// Copyright 2012 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// This file allows dumping the content of the type info stream of a PDB.
#ifndef SYZYGY_EXPERIMENTAL_PDB_DUMPER_PDB_TYPE_INFO_STREAM_DUMPER_H_
#define SYZYGY_EXPERIMENTAL_PDB_DUMPER_PDB_TYPE_INFO_STREAM_DUMPER_H_
#include <vector>
#include "syzygy/pdb/pdb_data.h"
#include "syzygy/pdb/pdb_data_types.h"
#include "syzygy/pdb/pdb_decl.h"
#include "syzygy/pdb/pdb_type_info_stream_enum.h"
namespace pdb {
// Dump @p type_info_header and @p type_info_record_map from @p stream to @p
// out.
void DumpTypeInfoStream(FILE* out, TypeInfoEnumerator& type_info_enum);
} // namespace pdb
#endif // SYZYGY_EXPERIMENTAL_PDB_DUMPER_PDB_TYPE_INFO_STREAM_DUMPER_H_