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