Update git submodules
[LibreOffice.git] / vcl / workben / wmffuzzer.cxx
blob371798fc945795e29192d3614d4481f2c9692a78
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include <tools/stream.hxx>
11 #include <vcl/gdimtf.hxx>
12 #include <vcl/wmf.hxx>
13 #include "commonfuzzer.hxx"
15 #include <config_features.h>
16 #include <osl/detail/component-mapping.h>
18 extern "C" {
19 void * com_sun_star_i18n_LocaleDataImpl_get_implementation( void *, void * );
20 void * com_sun_star_i18n_BreakIterator_Unicode_get_implementation( void *, void * );
21 void * com_sun_star_i18n_BreakIterator_get_implementation( void *, void * );
22 void * emfio_emfreader_XEmfParser_get_implementation( void *, void * );
25 const lib_to_factory_mapping *
26 lo_get_factory_map(void)
28 static lib_to_factory_mapping map[] = {
29 { 0, 0 }
32 return map;
35 const lib_to_constructor_mapping *
36 lo_get_constructor_map(void)
38 static lib_to_constructor_mapping map[] = {
39 { "com_sun_star_i18n_LocaleDataImpl_get_implementation", com_sun_star_i18n_LocaleDataImpl_get_implementation },
40 { "com_sun_star_i18n_BreakIterator_Unicode_get_implementation", com_sun_star_i18n_BreakIterator_Unicode_get_implementation },
41 { "com_sun_star_i18n_BreakIterator_get_implementation", com_sun_star_i18n_BreakIterator_get_implementation },
42 { "emfio_emfreader_XEmfParser_get_implementation", emfio_emfreader_XEmfParser_get_implementation},
43 { 0, 0 }
46 return map;
49 extern "C" void* lo_get_custom_widget_func(const char*)
51 return nullptr;
54 extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv)
56 TypicalFuzzerInitialize(argc, argv);
57 return 0;
60 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
62 SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ);
63 GDIMetaFile aGDIMetaFile;
64 (void)ReadWindowMetafile(aStream, aGDIMetaFile);
65 return 0;
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */