Mercurial > mplayer.hg
annotate libmpdvdkit2/common.h @ 19357:59af53f4f436
update the moving & copying rules as disscussed on mplayer-dev + some (but not all as iam lazy) fixes by the wanderer
author | michael |
---|---|
date | Wed, 09 Aug 2006 11:03:11 +0000 |
parents | 0783dd397f74 |
children | 8e6981e8f50a |
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 | |
16726
880739620241
Compile fix: _lseeki64 is not available under cygwin
reimar
parents:
16714
diff
changeset
|
6 * |
880739620241
Compile fix: _lseeki64 is not available under cygwin
reimar
parents:
16714
diff
changeset
|
7 * Modified for use with MPlayer, changes contained in libdvdread_changes.diff. |
18783 | 8 * detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/ |
7027 | 9 * $Id$ |
10 * | |
11 * Authors: Samuel Hocevar <sam@via.ecp.fr> | |
12 * Vincent Seguin <seguin@via.ecp.fr> | |
13 * Gildas Bazin <gbazin@netcourrier.com> | |
14 * | |
15 * This program is free software; you can redistribute it and/or modify | |
16 * it under the terms of the GNU General Public License as published by | |
17 * the Free Software Foundation; either version 2 of the License, or | |
18 * (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
|
19 * |
7027 | 20 * This program is distributed in the hope that it will be useful, |
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
23 * GNU General Public License for more details. | |
24 * | |
25 * You should have received a copy of the GNU General Public License | |
26 * along with this program; if not, write to the Free Software | |
27 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. | |
28 *****************************************************************************/ | |
29 | |
30 /***************************************************************************** | |
31 * Basic types definitions | |
32 *****************************************************************************/ | |
16714
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
33 #if defined( HAVE_STDINT_H ) |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
34 # include <stdint.h> |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
35 #elif defined( HAVE_INTTYPES_H ) |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
36 # include <inttypes.h> |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
37 #elif defined( SYS_CYGWIN ) |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
38 # include <sys/types.h> |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
39 /* Cygwin only defines half of these... */ |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
40 typedef u_int8_t uint8_t; |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
41 typedef u_int32_t uint32_t; |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
42 #else |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
43 /* Fallback types (very x86-centric, sorry) */ |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
44 typedef unsigned char uint8_t; |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
45 typedef signed char int8_t; |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
46 typedef unsigned int uint32_t; |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
47 typedef signed int int32_t; |
10721
e482b16c7145
__CYGWIN__->SYS_CYGWIN define moved to the right place
arpi
parents:
10720
diff
changeset
|
48 #endif |
e482b16c7145
__CYGWIN__->SYS_CYGWIN define moved to the right place
arpi
parents:
10720
diff
changeset
|
49 |
7027 | 50 #if defined( WIN32 ) |
51 | |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9333
diff
changeset
|
52 #ifndef PATH_MAX |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9333
diff
changeset
|
53 # 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
|
54 #endif |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9333
diff
changeset
|
55 |
7027 | 56 /* several type definitions */ |
57 # if defined( __MINGW32__ ) | |
16726
880739620241
Compile fix: _lseeki64 is not available under cygwin
reimar
parents:
16714
diff
changeset
|
58 #define lseek _lseeki64 |
7027 | 59 # if !defined( _OFF_T_ ) |
60 typedef long long _off_t; | |
61 typedef _off_t off_t; | |
62 # define _OFF_T_ | |
63 # else | |
64 # define off_t long long | |
65 # endif | |
66 # endif | |
67 | |
68 # if defined( _MSC_VER ) | |
69 # if !defined( _OFF_T_DEFINED ) | |
70 typedef __int64 off_t; | |
71 # define _OFF_T_DEFINED | |
72 # else | |
73 # define off_t __int64 | |
74 # endif | |
75 # define stat _stati64 | |
76 # endif | |
77 | |
78 # ifndef snprintf | |
79 # define snprintf _snprintf /* snprintf not defined in mingw32 (bug?) */ | |
80 # endif | |
81 | |
82 #endif | |
83 |