1 // Copyright 2018 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef SAMPLES_HELPERS_DUMP_H_ 6 #define SAMPLES_HELPERS_DUMP_H_ 7 8 #include "public/fpdfview.h" 9 10 void DumpChildStructure(FPDF_STRUCTELEMENT child, int indent); 11 void DumpPageInfo(FPDF_PAGE page, int page_idx); 12 void DumpPageStructure(FPDF_PAGE page, int page_idx); 13 void DumpMetaData(FPDF_DOCUMENT doc); 14 15 #endif // SAMPLES_HELPERS_DUMP_H_ 16