Global general Add-on to Kodi callback functions.
To hold general functions not related to a instance type and usable for every add-on type.
Related add-on header is "./xbmc/addons/kodi-dev-kit/include/kodi/General.h"
callback functions from add-on to kodi
Addon to Kodi basic callbacks below.
- Note
- To add a new function use the "_" style to directly identify an add-on callback function. Everything with CamelCase is only to be used in Kodi.
The parameter kodiBase
is used to become the pointer for a CAddonDll
class.
The amount of functions here are hold so minimal as possible. Only parts where needed on nearly every add-on (e.g. addon_log_msg) are to add there.
More specific parts like e.g. to open files should be added to a separate part.