dvdcss.h | dvdcss.h | |||
---|---|---|---|---|
skipping to change at line 13 | skipping to change at line 13 | |||
* \author Stéphane Borel <stef@via.ecp.fr> | * \author Stéphane Borel <stef@via.ecp.fr> | |||
* \author Sam Hocevar <sam@zoy.org> | * \author Sam Hocevar <sam@zoy.org> | |||
* \brief The \e libdvdcss public header. | * \brief The \e libdvdcss public header. | |||
* | * | |||
* This header contains the public types and functions that applications | * This header contains the public types and functions that applications | |||
* using \e libdvdcss may use. | * using \e libdvdcss may use. | |||
*/ | */ | |||
/* | /* | |||
* Copyright (C) 1998-2008 VideoLAN | * Copyright (C) 1998-2008 VideoLAN | |||
* $Id: dvdcss.h 219 2009-02-09 00:03:47Z jb $ | ||||
* | * | |||
* This program is free software; you can redistribute it and/or modify | * 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 | * it under the terms of the GNU General Public License as published by | |||
* the Free Software Foundation; either version 2 of the License, or | * the Free Software Foundation; either version 2 of the License, or | |||
* (at your option) any later version. | * (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This program 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 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
skipping to change at line 61 | skipping to change at line 60 | |||
/** Flag to tell dvdcss_seek() it is seeking in MPEG data. */ | /** Flag to tell dvdcss_seek() it is seeking in MPEG data. */ | |||
#define DVDCSS_SEEK_MPEG (1 << 0) | #define DVDCSS_SEEK_MPEG (1 << 0) | |||
/** Flag to ask dvdcss_seek() to check the current title key. */ | /** Flag to ask dvdcss_seek() to check the current title key. */ | |||
#define DVDCSS_SEEK_KEY (1 << 1) | #define DVDCSS_SEEK_KEY (1 << 1) | |||
#if defined(LIBDVDCSS_EXPORTS) | #if defined(LIBDVDCSS_EXPORTS) | |||
#define LIBDVDCSS_EXPORT __declspec(dllexport) extern | #define LIBDVDCSS_EXPORT __declspec(dllexport) extern | |||
#elif defined(LIBDVDCSS_IMPORTS) | #elif defined(LIBDVDCSS_IMPORTS) | |||
#define LIBDVDCSS_EXPORT __declspec(dllimport) extern | #define LIBDVDCSS_EXPORT __declspec(dllimport) extern | |||
#elif defined(SUPPORT_ATTRIBUTE_VISIBILITY_DEFAULT) | ||||
#define LIBDVDCSS_EXPORT __attribute__((visibility("default"))) extern | ||||
#else | #else | |||
#define LIBDVDCSS_EXPORT extern | #define LIBDVDCSS_EXPORT extern | |||
#endif | #endif | |||
/* | /* | |||
* Our version number. The variable name contains the interface version. | * Our version number. The variable name contains the interface version. | |||
*/ | */ | |||
LIBDVDCSS_EXPORT char * dvdcss_interface_2; | LIBDVDCSS_EXPORT char * dvdcss_interface_2; | |||
/* | /* | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added | |||