Skip to content

Commit

Permalink
[pvr] bye, bye libXBMC_pvr.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
AlwinEsch committed Dec 10, 2016
1 parent b69b0f1 commit fecbd17
Show file tree
Hide file tree
Showing 19 changed files with 137 additions and 592 deletions.
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ cmake_install.cmake
/lib/addons/library.kodi.guilib/project/VS2010Express/Debug
/lib/addons/library.xbmc.addon/Makefile
/lib/addons/library.kodi.adsp/Makefile
/lib/addons/library.xbmc.pvr/Makefile
/lib/addons/library.xbmc.codec/Makefile
/lib/addons/library.kodi.peripheral/Makefile
/lib/addons/library.kodi.game/Makefile
Expand All @@ -159,8 +158,6 @@ cmake_install.cmake
/lib/addons/library.kodi.adsp/project/VS2010Express/Debug
/lib/addons/library.xbmc.codec/project/VS2010Express/Release
/lib/addons/library.xbmc.codec/project/VS2010Express/Debug
/lib/addons/library.xbmc.pvr/project/VS2010Express/Release
/lib/addons/library.xbmc.pvr/project/VS2010Express/Debug
/lib/addons/library.kodi.audioengine/Makefile
/lib/addons/library.kodi.audioengine/project/VS2010Express/Release/
/lib/addons/library.kodi.audioengine/project/VS2010Express/Debug/
Expand Down Expand Up @@ -551,8 +548,6 @@ lib/cpluff/stamp-h1
/addons/library.xbmc.codec/libXBMC_codec.lib
/addons/library.kodi.guilib/libKODI_guilib.dll
/addons/library.kodi.guilib/libKODI_guilib.lib
/addons/library.xbmc.pvr/libXBMC_pvr.dll
/addons/library.xbmc.pvr/libXBMC_pvr.lib
/addons/library.kodi.audioengine/libKODI_audioengine.dll
/addons/library.kodi.audioengine/libKODI_audioengine.lib

Expand Down
2 changes: 0 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,6 @@ LIBADDON_DIRS=\
lib/addons/library.kodi.adsp \
lib/addons/library.kodi.audioengine \
lib/addons/library.xbmc.codec \
lib/addons/library.xbmc.pvr \
lib/addons/library.kodi.guilib \
lib/addons/library.kodi.inputstream \
lib/addons/library.kodi.peripheral \
Expand Down Expand Up @@ -368,7 +367,6 @@ libaddon: exports
$(MAKE) -C lib/addons/library.kodi.game
$(MAKE) -C lib/addons/library.kodi.guilib
$(MAKE) -C lib/addons/library.kodi.peripheral
$(MAKE) -C lib/addons/library.xbmc.pvr
$(MAKE) -C lib/addons/library.kodi.inputstream
dvdpcodecs: dllloader
$(MAKE) -C lib/libdvd
Expand Down
1 change: 0 additions & 1 deletion Makefile.include.in
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ INCLUDES+=-I@abs_top_srcdir@/addons/library.kodi.guilib
INCLUDES+=-I@abs_top_srcdir@/addons/library.xbmc.addon
INCLUDES+=-I@abs_top_srcdir@/addons/library.kodi.adsp
INCLUDES+=-I@abs_top_srcdir@/addons/library.kodi.audioengine
INCLUDES+=-I@abs_top_srcdir@/addons/library.xbmc.pvr
INCLUDES+=-I@abs_top_srcdir@/addons/library.xbmc.codec
INCLUDES+=$(sort @INCLUDES@)
INCLUDES+=-I@abs_top_srcdir@/xbmc/linux
Expand Down
4 changes: 0 additions & 4 deletions addons/library.xbmc.pvr/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2198,7 +2198,6 @@ OUTPUT_FILES="Makefile \
lib/addons/library.kodi.game/Makefile \
lib/addons/library.kodi.guilib/Makefile \
lib/addons/library.kodi.peripheral/Makefile \
lib/addons/library.xbmc.pvr/Makefile \
lib/addons/library.kodi.inputstream/Makefile \
tools/Linux/kodi.sh \
tools/Linux/kodi-standalone.sh \
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/library.kodi.game/libKODI_game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ DLLEXPORT CB_GameLib* GAME_register_me(AddonCB* frontend)
fprintf(stderr, "ERROR: GAME_register_frontend is called with NULL handle!!!\n");
else
{
cb = frontend->GameLib_RegisterMe(frontend->addonData);
cb = static_cast<CB_GameLib*>(frontend->GameLib_RegisterMe(frontend->addonData));
if (!cb)
fprintf(stderr, "ERROR: GAME_register_frontend can't get callback table from frontend!!!\n");
}
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/library.kodi.peripheral/libKODI_peripheral.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ DLLEXPORT CB_PeripheralLib* PERIPHERAL_register_me(AddonCB* frontend)
fprintf(stderr, "ERROR: PERIPHERAL_register_frontend is called with NULL handle!!!\n");
else
{
cb = frontend->PeripheralLib_RegisterMe(frontend->addonData);
cb = static_cast<CB_PeripheralLib*>(frontend->PeripheralLib_RegisterMe(frontend->addonData));
if (!cb)
fprintf(stderr, "ERROR: PERIPHERAL_register_frontend can't get callback table from frontend!!!\n");
}
Expand Down
3 changes: 0 additions & 3 deletions lib/addons/library.xbmc.pvr/CMakeLists.txt

This file was deleted.

29 changes: 0 additions & 29 deletions lib/addons/library.xbmc.pvr/Makefile.in

This file was deleted.

200 changes: 0 additions & 200 deletions lib/addons/library.xbmc.pvr/libXBMC_pvr.cpp

This file was deleted.

Loading

0 comments on commit fecbd17

Please sign in to comment.