common.h
branchtrunk
changeset 0 474a1293c3c0
child 2 4c1f7b705009
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/common.h	Sat Dec 29 14:47:40 2007 +0100
     1.3 @@ -0,0 +1,54 @@
     1.4 +/*
     1.5 + * MP3/MPlayer plugin to VDR (C++)
     1.6 + *
     1.7 + * (C) 2001-2006 Stefan Huelswitt <s.huelswitt@gmx.de>
     1.8 + *
     1.9 + * This code is free software; you can redistribute it and/or
    1.10 + * modify it under the terms of the GNU General Public License
    1.11 + * as published by the Free Software Foundation; either version 2
    1.12 + * of the License, or (at your option) any later version.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful,
    1.15 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.16 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.17 + * GNU General Public License for more details.
    1.18 + *
    1.19 + * You should have received a copy of the GNU General Public License
    1.20 + * along with this program; if not, write to the Free Software
    1.21 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    1.22 + * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
    1.23 + */
    1.24 +
    1.25 +#ifndef ___COMMON_H
    1.26 +#define ___COMMON_H
    1.27 +
    1.28 +#ifndef APIVERSNUM
    1.29 +#include <vdr/config.h>
    1.30 +#endif
    1.31 +#include "config.h"
    1.32 +
    1.33 +#if APIVERSNUM >= 10313
    1.34 +#define SLEEP(x) cCondWait::SleepMs(x)
    1.35 +#else
    1.36 +#define SLEEP(x) usleep((x)*1000)
    1.37 +#endif
    1.38 +
    1.39 +#if APIVERSNUM >= 10318
    1.40 +#include <vdr/tools.h>
    1.41 +static cTimeMs __time;
    1.42 +#define time_ms() ((int)__time.Elapsed())
    1.43 +#endif
    1.44 +
    1.45 +#if APIVERSNUM >= 10338
    1.46 +#define BUTTON "Button$"
    1.47 +#else
    1.48 +#define BUTTON
    1.49 +#endif
    1.50 +
    1.51 +#if !defined(NO_DEBUG) && defined(DEBUG)
    1.52 +#define d(x) { (x); }
    1.53 +#else
    1.54 +#define d(x) ; 
    1.55 +#endif
    1.56 +
    1.57 +#endif //___COMMON_H