diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-03-26 14:12:08 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-03-26 14:12:08 +0200 |
commit | 3dbd45235b059323589c5bdb7c3ef90319637906 (patch) | |
tree | ec582f9a95a53f2b6308d30dde804638e6309b99 | |
parent | 5c90a6eba3ead9dd359176e9865e7df8b3c716d5 (diff) | |
download | vdr-3dbd45235b059323589c5bdb7c3ef90319637906.tar.gz vdr-3dbd45235b059323589c5bdb7c3ef90319637906.tar.bz2 |
Fixed some #include sequences
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | epg.c | 6 | ||||
-rw-r--r-- | pat.h | 4 | ||||
-rw-r--r-- | receiver.c | 4 | ||||
-rw-r--r-- | spu.c | 4 |
5 files changed, 10 insertions, 9 deletions
@@ -4451,3 +4451,4 @@ Video Disk Recorder Revision History or via SVDRP/PUTE to avoid problems with double EPG events. - The 'running status' of EPG events is now only set to SI::RunningStatusNotRunning for events before the present event. +- Fixed some #include sequences. @@ -7,14 +7,14 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * - * $Id: epg.c 1.69 2006/03/26 13:47:29 kls Exp $ + * $Id: epg.c 1.70 2006/03/26 14:06:11 kls Exp $ */ #include "epg.h" -#include "libsi/si.h" -#include "timers.h" #include <ctype.h> #include <time.h> +#include "libsi/si.h" +#include "timers.h" #define RUNNINGSTATUSTIMEOUT 30 // seconds before the running status is considered unknown @@ -4,14 +4,14 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: pat.h 1.4 2004/03/07 16:22:01 kls Exp $ + * $Id: pat.h 1.5 2006/03/26 14:09:43 kls Exp $ */ #ifndef __PAT_H #define __PAT_H -#include "filter.h" #include <stdint.h> +#include "filter.h" #define MAXPMTENTRIES 64 @@ -4,12 +4,12 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: receiver.c 1.4 2005/01/16 14:03:01 kls Exp $ + * $Id: receiver.c 1.5 2006/03/26 14:07:21 kls Exp $ */ +#include "receiver.h" #include <stdarg.h> #include <stdio.h> -#include "receiver.h" #include "tools.h" cReceiver::cReceiver(int Ca, int Priority, int Pid, const int *Pids1, const int *Pids2, const int *Pids3) @@ -6,11 +6,11 @@ * This code is distributed under the terms and conditions of the * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details. * - * $Id: spu.c 1.1 2002/09/08 14:17:41 kls Exp $ + * $Id: spu.c 1.2 2006/03/26 14:07:59 kls Exp $ */ -#include <inttypes.h> #include "spu.h" +#include <inttypes.h> // -- cSpuDecoder ---------------- /* |