blob: 0459a27f28753adba384be8c58619f07758b8c6c [file] [log] [blame]
Dirk Lemstra7903f952018-10-04 21:55:17 +02001/*
Cristyd8420112021-01-01 14:52:00 -05002 Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization
Dirk Lemstra7903f952018-10-04 21:55:17 +02003 dedicated to making software imaging solutions freely available.
4
Cristy57b308b2019-01-19 17:53:40 -05005 You may not use this file except in compliance with the License. You may
Dirk Lemstra7903f952018-10-04 21:55:17 +02006 obtain a copy of the License at
7
8 https://imagemagick.org/script/license.php
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16
17#include "coders/coders-private.h"
18
Dirk Lemstra44b1a1b2018-09-30 22:09:25 +020019#define MagickBMPHeaders \
20 MagickCoderHeader("BMP", 0, "BA") \
21 MagickCoderHeader("BMP", 0, "BM") \
22 MagickCoderHeader("BMP", 0, "CI") \
23 MagickCoderHeader("BMP", 0, "CP") \
24 MagickCoderHeader("BMP", 0, "IC") \
25 MagickCoderHeader("BMP", 0, "IP")
26
Dirk Lemstra826cbeb2018-10-05 00:12:46 +020027#define MagickBMPAliases \
28 MagickCoderAlias("BMP", "BMP2") \
29 MagickCoderAlias("BMP", "BMP3")
30
Dirk Lemstra7903f952018-10-04 21:55:17 +020031#if defined(__cplusplus) || defined(c_plusplus)
32extern "C" {
33#endif
34
35MagickCoderExports(BMP)
36
37#if defined(__cplusplus) || defined(c_plusplus)
38}
Elliott Hughes5d41fba2021-04-12 16:36:42 -070039#endif