blob: 7bf4b40192914e30d54e3d4c127c59631d84775f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#pragma once
#include <QtCore/QByteArray>
#include <QtCore/QList>
#ifdef BUILD_MYLIB
# define MYLIB_EXPORT Q_DECL_EXPORT
#else
# define MYLIB_EXPORT Q_DECL_IMPORT
#endif
MYLIB_EXPORT QList<QByteArray> getSupportedImageFormats();
|