mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added some missing #includes
This commit is contained in:
parent
fd1f60e0e0
commit
4d784a198d
3
HISTORY
3
HISTORY
@ -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).
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
3
plugin.c
3
plugin.c
@ -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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user