audiofile.h | audiofile.h | |||
---|---|---|---|---|
/* | /* | |||
Audio File Library | Audio File Library | |||
Copyright (C) 1998-2000, 2010-2012, Michael Pruett <michael@68k.org> | Copyright (C) 1998-2000, 2010-2013, Michael Pruett <michael@68k.org> | |||
This library is free software; you can redistribute it and/or | This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | version 2 of the License, or (at your option) any later version. | |||
This library is distributed in the hope that it will be useful, | This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | Library General Public License for more details. | |||
skipping to change at line 36 | skipping to change at line 36 | |||
#ifndef AUDIOFILE_H | #ifndef AUDIOFILE_H | |||
#define AUDIOFILE_H | #define AUDIOFILE_H | |||
#include <aupvlist.h> | #include <aupvlist.h> | |||
#include <stdint.h> | #include <stdint.h> | |||
#include <sys/types.h> | #include <sys/types.h> | |||
#define LIBAUDIOFILE_MAJOR_VERSION 0 | #define LIBAUDIOFILE_MAJOR_VERSION 0 | |||
#define LIBAUDIOFILE_MINOR_VERSION 3 | #define LIBAUDIOFILE_MINOR_VERSION 3 | |||
#define LIBAUDIOFILE_MICRO_VERSION 4 | #define LIBAUDIOFILE_MICRO_VERSION 5 | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
#if (defined(__GNUC__) && __GNUC__ >= 4) || defined(__clang__) | #if (defined(__GNUC__) && __GNUC__ >= 4) || defined(__clang__) | |||
#define AFAPI __attribute__((visibility("default"))) | #define AFAPI __attribute__((visibility("default"))) | |||
#else | #else | |||
#define AFAPI | #define AFAPI | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||