annotate dvdauth.h @ 1517:0e9c29538a86

Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile Win32 DLL code into mplayer. Default for USE_WIN32DLL is enabled on x86 machines, disabled otherwise. Use of Win32 DLLs can be disabled on x86 using the --disable-win32 configure option.
author jkeil
date Tue, 14 Aug 2001 18:28:56 +0000
parents b333271f4e7c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1042
b333271f4e7c Solaris 8 DVD support and other fixes by Juergen Keil <jk@tools.de>
arpi_esp
parents: 1018
diff changeset
1 //#include "config.h"
492
888a85621f50 preliminary DVD support using libcss
lgb
parents:
diff changeset
2 #ifdef HAVE_LIBCSS
888a85621f50 preliminary DVD support using libcss
lgb
parents:
diff changeset
3 #ifndef _MPLAYER_CSS_H
888a85621f50 preliminary DVD support using libcss
lgb
parents:
diff changeset
4 #define _MPLAYER_CSS_H
888a85621f50 preliminary DVD support using libcss
lgb
parents:
diff changeset
5
1018
e5fc7ec51fa3 -dvd is renamed to -dvdauth, variable dvd_device is renamed to dvd_auth_device. These changes are needed for future DVD playback developmenting
lgb
parents: 546
diff changeset
6 extern char *dvd_auth_device;
492
888a85621f50 preliminary DVD support using libcss
lgb
parents:
diff changeset
7 extern unsigned char key_disc[];
888a85621f50 preliminary DVD support using libcss
lgb
parents:
diff changeset
8 extern unsigned char key_title[];
546
22ed5f5821e2 command line requested DVD key support for Arpi :)
lgb
parents: 492
diff changeset
9 extern unsigned char *dvdimportkey;
22ed5f5821e2 command line requested DVD key support for Arpi :)
lgb
parents: 492
diff changeset
10 extern int descrambling;
492
888a85621f50 preliminary DVD support using libcss
lgb
parents:
diff changeset
11
1042
b333271f4e7c Solaris 8 DVD support and other fixes by Juergen Keil <jk@tools.de>
arpi_esp
parents: 1018
diff changeset
12 int dvd_auth ( char *, char * );
546
22ed5f5821e2 command line requested DVD key support for Arpi :)
lgb
parents: 492
diff changeset
13 int dvd_import_key ( unsigned char * );
492
888a85621f50 preliminary DVD support using libcss
lgb
parents:
diff changeset
14
888a85621f50 preliminary DVD support using libcss
lgb
parents:
diff changeset
15 #endif
1042
b333271f4e7c Solaris 8 DVD support and other fixes by Juergen Keil <jk@tools.de>
arpi_esp
parents: 1018
diff changeset
16 #endif