Added some missing #includes

This commit is contained in:
Klaus Schmidinger 2002-08-11 10:47:11 +02:00
parent fd1f60e0e0
commit 4d784a198d
4 changed files with 8 additions and 4 deletions

View File

@ -1393,8 +1393,9 @@ Video Disk Recorder Revision History
- Changed the cDevice class to allow plugins to implement their own devices (see
PLUGINS.html for details).
2002-08-10: Version 1.1.7
2002-08-11: Version 1.1.7
- Adapted VDR to the NEWSTRUCT driver. To use the new driver, compile VDR with
'make NEWSTRUCT=1' (thanks to Holger Wächtler for some valuable advice).
By default it currently still uses the old driver.
- Added some missing #includes (thanks to Martin Hammerschmid).

View File

@ -4,11 +4,12 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: dvbplayer.c 1.8 2002/07/27 11:57:48 kls Exp $
* $Id: dvbplayer.c 1.9 2002/08/11 10:46:53 kls Exp $
*/
#include "dvbplayer.h"
#include <poll.h>
#include <stdlib.h>
#include "recording.h"
#include "ringbuffer.h"
#include "thread.h"

View File

@ -4,11 +4,12 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: interface.c 1.52 2002/06/16 13:23:40 kls Exp $
* $Id: interface.c 1.53 2002/08/11 10:47:04 kls Exp $
*/
#include "interface.h"
#include <ctype.h>
#include <stdlib.h>
#include <unistd.h>
#include "i18n.h"
#include "osd.h"

View File

@ -4,13 +4,14 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: plugin.c 1.5 2002/05/13 16:31:09 kls Exp $
* $Id: plugin.c 1.6 2002/08/11 10:47:11 kls Exp $
*/
#include "plugin.h"
#include <ctype.h>
#include <dirent.h>
#include <dlfcn.h>
#include <stdlib.h>
#include <time.h>
#include "config.h"