mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added a missing include statement to the 'sky' plugin
This commit is contained in:
parent
75587d1a17
commit
cda89e7fb0
@ -881,6 +881,7 @@ Alfred Zastrow <vdr@zastrow4u.de>
|
|||||||
for reporting a bug in handling menu status messages when the list contents is scrolled
|
for reporting a bug in handling menu status messages when the list contents is scrolled
|
||||||
for reporting that without the usleep() call in cDvbPlayer::Action() VDR runs on NPTL
|
for reporting that without the usleep() call in cDvbPlayer::Action() VDR runs on NPTL
|
||||||
systems
|
systems
|
||||||
|
for reporting a missing include statement in the 'sky' plugin
|
||||||
|
|
||||||
Matthias Raus <matthias-raus@web.de>
|
Matthias Raus <matthias-raus@web.de>
|
||||||
for reporting a problem with starting the editing process if no marks have been set
|
for reporting a problem with starting the editing process if no marks have been set
|
||||||
|
2
HISTORY
2
HISTORY
@ -3815,3 +3815,5 @@ Video Disk Recorder Revision History
|
|||||||
- Added cChannel::LinkChannels() and cChannel::RefChannel() (suggested by Helmut Auer).
|
- Added cChannel::LinkChannels() and cChannel::RefChannel() (suggested by Helmut Auer).
|
||||||
Note that VDR itself doesn't actually use the linked channels, yet, so there is
|
Note that VDR itself doesn't actually use the linked channels, yet, so there is
|
||||||
no guarantee that this really works under all circumstances.
|
no guarantee that this really works under all circumstances.
|
||||||
|
- Added a missing include statement to the 'sky' plugin (thanks to Alfred Zastrow
|
||||||
|
for reporting this one).
|
||||||
|
@ -37,3 +37,7 @@ VDR Plugin 'sky' Revision History
|
|||||||
|
|
||||||
- Made several functions threadsafe.
|
- Made several functions threadsafe.
|
||||||
- Removed delay_ms(), using cCondWait::SleepMs() instead.
|
- Removed delay_ms(), using cCondWait::SleepMs() instead.
|
||||||
|
|
||||||
|
2005-09-17: Version 0.3.4
|
||||||
|
|
||||||
|
- Added a missing include statement.
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
* See the README file for copyright information and how to reach the author.
|
* See the README file for copyright information and how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: sky.c 1.11 2004/12/26 12:45:22 kls Exp $
|
* $Id: sky.c 1.12 2005/09/17 10:39:35 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
@ -11,10 +11,11 @@
|
|||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <sys/un.h>
|
#include <sys/un.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <vdr/device.h>
|
||||||
#include <vdr/plugin.h>
|
#include <vdr/plugin.h>
|
||||||
#include <vdr/sources.h>
|
#include <vdr/sources.h>
|
||||||
|
|
||||||
static const char *VERSION = "0.3.3";
|
static const char *VERSION = "0.3.4";
|
||||||
static const char *DESCRIPTION = "Sky Digibox interface";
|
static const char *DESCRIPTION = "Sky Digibox interface";
|
||||||
|
|
||||||
// --- cDigiboxDevice --------------------------------------------------------
|
// --- cDigiboxDevice --------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user