diff options
author | Pär Björklund <per.bjorklund@gmail.com> | 2013-01-27 19:24:11 +0100 |
---|---|---|
committer | Pär Björklund <per.bjorklund@gmail.com> | 2013-02-05 17:37:37 +0100 |
commit | 421d9fdb0658abb01306a62e5d57da044263b216 (patch) | |
tree | b461210eba0ca04506c7ec7e063978106aae78d7 /lib/libdvd/libdvdnav/msvc/include | |
parent | 7b2dddca5e48219a2cb2bc0128dc5d5e94fc9e00 (diff) |
Updated libdvdcss, read and nav to the latest versions
All XBMC modifications are kept intact
Moved get/set state functions from vm.h to dvdnav_internal.h where
they should be
Added comments to clarify which functions are added by XBMC
Diffstat (limited to 'lib/libdvd/libdvdnav/msvc/include')
-rwxr-xr-x | lib/libdvd/libdvdnav/msvc/include/dlfcn.h | 7 | ||||
-rw-r--r-- | lib/libdvd/libdvdnav/msvc/include/dvdnav_internal.h | 15 | ||||
-rwxr-xr-x | lib/libdvd/libdvdnav/msvc/include/getopt.h | 4 | ||||
-rwxr-xr-x | lib/libdvd/libdvdnav/msvc/include/inttypes.h | 4 | ||||
-rwxr-xr-x | lib/libdvd/libdvdnav/msvc/include/os_types.h | 3 | ||||
-rwxr-xr-x | lib/libdvd/libdvdnav/msvc/include/pthreads/pthread.h | 4 | ||||
-rwxr-xr-x | lib/libdvd/libdvdnav/msvc/include/pthreads/sched.h | 4 | ||||
-rwxr-xr-x | lib/libdvd/libdvdnav/msvc/include/sys/time.h | 4 | ||||
-rwxr-xr-x | lib/libdvd/libdvdnav/msvc/include/unistd.h | 4 |
9 files changed, 19 insertions, 30 deletions
diff --git a/lib/libdvd/libdvdnav/msvc/include/dlfcn.h b/lib/libdvd/libdvdnav/msvc/include/dlfcn.h index 7a2416c843..b5fe376c34 100755 --- a/lib/libdvd/libdvdnav/msvc/include/dlfcn.h +++ b/lib/libdvd/libdvdnav/msvc/include/dlfcn.h @@ -1,11 +1,6 @@ #ifndef __DLFCN_H__ # define __DLFCN_H__ -/* - * $Id: dlfcn.h 1135 2008-09-06 21:55:51Z rathann $ - * $Name$ - * - * - */ + extern void *dlopen (const char *file, int mode); extern int dlclose (void *handle); extern void *dlsym (void * handle, const char * name); diff --git a/lib/libdvd/libdvdnav/msvc/include/dvdnav_internal.h b/lib/libdvd/libdvdnav/msvc/include/dvdnav_internal.h index cee785472e..72f8393faf 100644 --- a/lib/libdvd/libdvdnav/msvc/include/dvdnav_internal.h +++ b/lib/libdvd/libdvdnav/msvc/include/dvdnav_internal.h @@ -14,16 +14,13 @@ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA - * - * $Id: dvdnav_internal.h 1135 2008-09-06 21:55:51Z rathann $ - * + * You should have received a copy of the GNU General Public License along + * with libdvdnav; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef DVDNAV_INTERNAL_H_INCLUDED -#define DVDNAV_INTERNAL_H_INCLUDED +#ifndef LIBDVDNAV_DVDNAV_INTERNAL_H +#define LIBDVDNAV_DVDNAV_INTERNAL_H #ifdef HAVE_CONFIG_H #include "config.h" @@ -182,4 +179,4 @@ struct dvdnav_s { #define S_OK DVDNAV_STATUS_OK #endif /* MSC_VER */ -#endif /* DVDNAV_INTERNAL_H_INCLUDED */ +#endif /* LIBDVDNAV_DVDNAV_INTERNAL_H */ diff --git a/lib/libdvd/libdvdnav/msvc/include/getopt.h b/lib/libdvd/libdvdnav/msvc/include/getopt.h index 2fa12f7baf..5f4643aa9c 100755 --- a/lib/libdvd/libdvdnav/msvc/include/getopt.h +++ b/lib/libdvd/libdvdnav/msvc/include/getopt.h @@ -16,8 +16,8 @@ You should have received a copy of the GNU Library General Public License along with the GNU C Library; see the file COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ + write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth + Floor, Boston, MA 02110-1301 USA. */ #ifndef _GETOPT_H #define _GETOPT_H 1 diff --git a/lib/libdvd/libdvdnav/msvc/include/inttypes.h b/lib/libdvd/libdvdnav/msvc/include/inttypes.h index 55fd6a33e0..4e1cbe1efe 100755 --- a/lib/libdvd/libdvdnav/msvc/include/inttypes.h +++ b/lib/libdvd/libdvdnav/msvc/include/inttypes.h @@ -14,8 +14,8 @@ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * WIN32 PORT, * by Matthew Grooms <elon@altavista.com> diff --git a/lib/libdvd/libdvdnav/msvc/include/os_types.h b/lib/libdvd/libdvdnav/msvc/include/os_types.h index 69f05a8d93..294847ea3f 100755 --- a/lib/libdvd/libdvdnav/msvc/include/os_types.h +++ b/lib/libdvd/libdvdnav/msvc/include/os_types.h @@ -1,9 +1,6 @@ #ifndef __OS_TYPES_H__ #define __OS_TYPES_H__ /* - * $Id: os_types.h 1135 2008-09-06 21:55:51Z rathann $ - * $Name$ - * * win32 types * 04 Sept 2001 - Chris Wolf create. */ diff --git a/lib/libdvd/libdvdnav/msvc/include/pthreads/pthread.h b/lib/libdvd/libdvdnav/msvc/include/pthreads/pthread.h index 7b89ca8401..9f6fae54fa 100755 --- a/lib/libdvd/libdvdnav/msvc/include/pthreads/pthread.h +++ b/lib/libdvd/libdvdnav/msvc/include/pthreads/pthread.h @@ -15,8 +15,8 @@ * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free - * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, - * MA 02111-1307, USA + * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301 USA. */ #if !defined( PTHREAD_H ) diff --git a/lib/libdvd/libdvdnav/msvc/include/pthreads/sched.h b/lib/libdvd/libdvdnav/msvc/include/pthreads/sched.h index ab277920e0..d7596b292d 100755 --- a/lib/libdvd/libdvdnav/msvc/include/pthreads/sched.h +++ b/lib/libdvd/libdvdnav/msvc/include/pthreads/sched.h @@ -22,8 +22,8 @@ * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free - * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, - * MA 02111-1307, USA + * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301 USA. */ #ifndef _SCHED_H #define _SCHED_H diff --git a/lib/libdvd/libdvdnav/msvc/include/sys/time.h b/lib/libdvd/libdvdnav/msvc/include/sys/time.h index f874fa655f..843e252c66 100755 --- a/lib/libdvd/libdvdnav/msvc/include/sys/time.h +++ b/lib/libdvd/libdvdnav/msvc/include/sys/time.h @@ -14,8 +14,8 @@ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * WIN32 PORT, * by Matthew Grooms <elon@altavista.com> diff --git a/lib/libdvd/libdvdnav/msvc/include/unistd.h b/lib/libdvd/libdvdnav/msvc/include/unistd.h index 7e4c63f3a5..2f3c4587ed 100755 --- a/lib/libdvd/libdvdnav/msvc/include/unistd.h +++ b/lib/libdvd/libdvdnav/msvc/include/unistd.h @@ -14,8 +14,8 @@ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * WIN32 PORT, * by Matthew Grooms <elon@altavista.com> |