/src/libreoffice/vcl/workben/wmffuzzer.cxx
Line | Count | Source |
1 | | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
2 | | /* |
3 | | * This file is part of the LibreOffice project. |
4 | | * |
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 | | */ |
9 | | |
10 | | #include <tools/stream.hxx> |
11 | | #include <vcl/gdimtf.hxx> |
12 | | #include <vcl/wmf.hxx> |
13 | | #include "commonfuzzer.hxx" |
14 | | |
15 | | #include <config_features.h> |
16 | | #include <osl/detail/component-mapping.h> |
17 | | |
18 | | extern "C" { |
19 | | void com_sun_star_i18n_LocaleDataImpl_get_implementation( void ); |
20 | | void com_sun_star_i18n_BreakIterator_Unicode_get_implementation( void ); |
21 | | void com_sun_star_i18n_BreakIterator_get_implementation( void ); |
22 | | void emfio_emfreader_XEmfParser_get_implementation( void ); |
23 | | } |
24 | | |
25 | | const lib_to_factory_mapping * |
26 | | lo_get_factory_map(void) |
27 | 0 | { |
28 | 0 | static lib_to_factory_mapping map[] = { |
29 | 0 | { 0, 0 } |
30 | 0 | }; |
31 | |
|
32 | 0 | return map; |
33 | 0 | } |
34 | | |
35 | | const lib_to_constructor_mapping * |
36 | | lo_get_constructor_map(void) |
37 | 309k | { |
38 | 309k | static lib_to_constructor_mapping map[] = { |
39 | 309k | { "com_sun_star_i18n_LocaleDataImpl_get_implementation", com_sun_star_i18n_LocaleDataImpl_get_implementation }, |
40 | 309k | { "com_sun_star_i18n_BreakIterator_Unicode_get_implementation", com_sun_star_i18n_BreakIterator_Unicode_get_implementation }, |
41 | 309k | { "com_sun_star_i18n_BreakIterator_get_implementation", com_sun_star_i18n_BreakIterator_get_implementation }, |
42 | 309k | { "emfio_emfreader_XEmfParser_get_implementation", emfio_emfreader_XEmfParser_get_implementation}, |
43 | 309k | { 0, 0 } |
44 | 309k | }; |
45 | | |
46 | 309k | return map; |
47 | 309k | } |
48 | | |
49 | | extern "C" void* lo_get_custom_widget_func(const char*) |
50 | 0 | { |
51 | 0 | return nullptr; |
52 | 0 | } |
53 | | |
54 | | extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv) |
55 | 94 | { |
56 | 94 | TypicalFuzzerInitialize(argc, argv); |
57 | 94 | return 0; |
58 | 94 | } |
59 | | |
60 | | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) |
61 | 410k | { |
62 | 410k | SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ); |
63 | 410k | GDIMetaFile aGDIMetaFile; |
64 | 410k | (void)ReadWindowMetafile(aStream, aGDIMetaFile); |
65 | 410k | return 0; |
66 | 410k | } |
67 | | |
68 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |