mirror of
https://github.com/Rosalie241/RMG.git
synced 2025-06-25 14:07:02 -04:00
38 lines
2 KiB
C++
38 lines
2 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Mupen64plus - main.h *
|
|
* Mupen64Plus homepage: https://mupen64plus.org/ *
|
|
* Copyright (C) 2008-2012 Tillin9, Richard42 *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program; if not, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include <cstdlib>
|
|
|
|
#if defined(__GNUC__)
|
|
#define ATTR_FMT(fmtpos, attrpos) __attribute__ ((format (printf, fmtpos, attrpos)))
|
|
#else
|
|
#define ATTR_FMT(fmtpos, attrpos)
|
|
#endif
|
|
|
|
struct resampler_interface;
|
|
|
|
size_t ResampleAndMix(void* resampler, const struct resampler_interface* iresampler,
|
|
void* mix_buffer,
|
|
const void* src, size_t src_size, unsigned int src_freq,
|
|
void* dst, size_t dst_size, unsigned int dst_freq);
|
|
|
|
void DebugMessage(int level, const char *message, ...) ATTR_FMT(2,3);
|
|
|