[vdr] plugin errors with vdr 1.5.1
VDR User
user.vdr at gmail.com
Sun Mar 18 16:36:21 CET 2007
On 3/18/07, anthony kelly <atkellyx at iinet.net.au> wrote:
> I could not compile many plugins with 1.5.1 until I made the following
> change in ./include/vdr/osdbase.h, in "class cOsdObject" I moved "bool
> needsFastResponse;" from private to public scope.
There is now a SetNeedsFastResponse function to set that bootlean.
Your change to vdr works but you might simply want to update plugins
as most of the common ones have been fixed.
If you want to add 1.5.1 compatibility to a plugin, you can follow the
following code example:
#if APIVERSNUM >= 10500
SetNeedsFastResponse(false);
#else
needsFastResponse = false;
#endif
More information about the vdr
mailing list