vcl/source/filter/ixbm/xbmread.hxx | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit c8d96de7d4e7e109ac3492c965ed02a996d13d72 Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Thu Apr 24 12:06:22 2025 +0100 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Thu Apr 24 14:44:47 2025 +0200 include vcl/dllapi.h for VCL_DLLPUBLIC seen in oss-fuzz build failure as: Step #4 - "compile-honggfuzz-address-x86_64": /src/libreoffice/vcl/inc/../source/filter/ixbm/xbmread.hxx:25:1: error: unknown type name 'VCL_DLLPUBLIC' Step #4 - "compile-honggfuzz-address-x86_64": 25 | VCL_DLLPUBLIC bool ImportXBM(SvStream& rStream, ImportOutput& rImportOutput); Step #4 - "compile-honggfuzz-address-x86_64": error generated. Change-Id: I931502cf8295d4e1e03ffe2d28a6c3dc62d7ab73 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184551 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/vcl/source/filter/ixbm/xbmread.hxx b/vcl/source/filter/ixbm/xbmread.hxx index b1f45d9972a3..c2a87054b0e0 100644 --- a/vcl/source/filter/ixbm/xbmread.hxx +++ b/vcl/source/filter/ixbm/xbmread.hxx @@ -19,6 +19,8 @@ #pragma once +#include <vcl/dllapi.h> + class SvStream; class ImportOutput;