Mercurial > mplayer.hg
annotate libmpdvdkit2/common.h @ 11324:9fceaedbd5a6
Missing <application> tags added, patch by Maciej Paszta <paszczi@go2.pl>.
zlib added to the recommended libraries list.
author | diego |
---|---|
date | Thu, 30 Oct 2003 00:21:31 +0000 |
parents | e482b16c7145 |
children | c2ddedd0619e |
rev | line source |
---|---|
7027 | 1 /***************************************************************************** |
2 * common.h: common definitions | |
3 * Collection of useful common types and macros definitions | |
4 ***************************************************************************** | |
5 * Copyright (C) 1998, 1999, 2000 VideoLAN | |
6 * $Id$ | |
7 * | |
8 * Authors: Samuel Hocevar <sam@via.ecp.fr> | |
9 * Vincent Seguin <seguin@via.ecp.fr> | |
10 * Gildas Bazin <gbazin@netcourrier.com> | |
11 * | |
12 * This program is free software; you can redistribute it and/or modify | |
13 * it under the terms of the GNU General Public License as published by | |
14 * the Free Software Foundation; either version 2 of the License, or | |
15 * (at your option) any later version. | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
7027
diff
changeset
|
16 * |
7027 | 17 * This program is distributed in the hope that it will be useful, |
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 * GNU General Public License for more details. | |
21 * | |
22 * You should have received a copy of the GNU General Public License | |
23 * along with this program; if not, write to the Free Software | |
24 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. | |
25 *****************************************************************************/ | |
26 | |
27 /***************************************************************************** | |
28 * Basic types definitions | |
29 *****************************************************************************/ | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
7027
diff
changeset
|
30 #include <inttypes.h> |
7027 | 31 |
10721
e482b16c7145
__CYGWIN__->SYS_CYGWIN define moved to the right place
arpi
parents:
10720
diff
changeset
|
32 #ifdef __CYGWIN__ |
e482b16c7145
__CYGWIN__->SYS_CYGWIN define moved to the right place
arpi
parents:
10720
diff
changeset
|
33 #define SYS_CYGWIN |
e482b16c7145
__CYGWIN__->SYS_CYGWIN define moved to the right place
arpi
parents:
10720
diff
changeset
|
34 #endif |
e482b16c7145
__CYGWIN__->SYS_CYGWIN define moved to the right place
arpi
parents:
10720
diff
changeset
|
35 |
7027 | 36 #if defined( WIN32 ) |
37 | |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9333
diff
changeset
|
38 #ifndef PATH_MAX |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9333
diff
changeset
|
39 # define PATH_MAX MAX_PATH |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9333
diff
changeset
|
40 #endif |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9333
diff
changeset
|
41 |
7027 | 42 /* several type definitions */ |
43 # if defined( __MINGW32__ ) | |
44 # if !defined( _OFF_T_ ) | |
45 typedef long long _off_t; | |
46 typedef _off_t off_t; | |
47 # define _OFF_T_ | |
48 # else | |
49 # define off_t long long | |
50 # endif | |
51 # endif | |
52 | |
53 # if defined( _MSC_VER ) | |
54 # if !defined( _OFF_T_DEFINED ) | |
55 typedef __int64 off_t; | |
56 # define _OFF_T_DEFINED | |
57 # else | |
58 # define off_t __int64 | |
59 # endif | |
60 # define stat _stati64 | |
61 # endif | |
62 | |
63 # ifndef snprintf | |
64 # define snprintf _snprintf /* snprintf not defined in mingw32 (bug?) */ | |
65 # endif | |
66 | |
67 #endif | |
68 |