1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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>
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
[] = {
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
},
49 extern "C" void* lo_get_custom_widget_func(const char*)
54 extern "C" int LLVMFuzzerInitialize(int *argc
, char ***argv
)
56 TypicalFuzzerInitialize(argc
, argv
);
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
);
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */