mgba/src/util/export.h

21 lines
527 B
C
Raw Normal View History

2015-05-29 07:03:09 +00:00
/* Copyright (c) 2013-2015 Jeffrey Pfau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef EXPORT_H
#define EXPORT_H
2015-05-29 07:03:09 +00:00
#include "util/common.h"
2016-12-27 05:01:55 +00:00
CXX_GUARD_START
2015-05-29 07:03:09 +00:00
struct VFile;
bool exportPaletteRIFF(struct VFile* vf, size_t entries, const uint16_t* colors);
bool exportPaletteACT(struct VFile* vf, size_t entries, const uint16_t* colors);
2015-05-29 07:03:09 +00:00
2016-12-27 05:01:55 +00:00
CXX_GUARD_END
2015-05-29 07:03:09 +00:00
#endif