1 // Copyright 2018 The PDFium Authors. All rights reserved. 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_PDFIUM_TEST_EVENT_HELPER_H_ 6 #define SAMPLES_PDFIUM_TEST_EVENT_HELPER_H_ 7 8 #include <string> 9 10 #include "public/fpdf_formfill.h" 11 #include "public/fpdfview.h" 12 13 void SendPageEvents(FPDF_FORMHANDLE form, 14 FPDF_PAGE page, 15 const std::string& events); 16 17 #endif // SAMPLES_PDFIUM_TEST_EVENT_HELPER_H_ 18