annotate osdep/osdep.h @ 30746:7092b8fc23f4

Add cddb:// support for OS/2
author komh
date Sun, 28 Feb 2010 03:26:18 +0000
parents
children 24c1cedb1de2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30746
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
1 /*
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
2 * Header in order to include OS-specific headers, macros, types and so on
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
3 *
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
4 * Copyright (c) 2010 by KO Myung-Hun (komh@chollian.net)
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
5 *
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
6 * This file is part of MPlayer.
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
7 *
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
8 * MPlayer is free software; you can redistribute it and/or modify
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
9 * it under the terms of the GNU General Public License as published by
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
10 * the Free Software Foundation; either version 2 of the License, or
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
11 * (at your option) any later version.
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
12 *
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
13 * MPlayer is distributed in the hope that it will be useful,
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
16 * GNU General Public License for more details.
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
17 *
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
18 * You should have received a copy of the GNU General Public License along
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
21 */
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
22
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
23 #ifndef MPLAYER_OSDEP_H
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
24 #define MPLAYER_OSDEP_H
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
25
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
26 #ifdef __OS2__
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
27 #define INCL_DOS
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
28 #define INCL_DOSDEVIOCTL
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
29 #include <os2.h>
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
30 #endif
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
31
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
32 #endif /* MPLAYER_OSDEP_H */
7092b8fc23f4 Add cddb:// support for OS/2
komh
parents:
diff changeset
33