kodi
Select.h
1 /*
2  * Copyright (C) 2005-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "addons/kodi-dev-kit/include/kodi/c-api/gui/dialogs/select.h"
12 
13 extern "C"
14 {
15 
16  struct AddonGlobalInterface;
17 
18  namespace ADDON
19  {
20 
30  {
31  static void Init(AddonGlobalInterface* addonInterface);
32  static void DeInit(AddonGlobalInterface* addonInterface);
33 
45  static int open(KODI_HANDLE kodiBase,
46  const char* heading,
47  const char* entries[],
48  unsigned int size,
49  int selected,
50  unsigned int autoclose);
51  static bool open_multi_select(KODI_HANDLE kodiBase,
52  const char* heading,
53  const char* entryIDs[],
54  const char* entryNames[],
55  bool entriesSelected[],
56  unsigned int size,
57  unsigned int autoclose);
59  };
60 
61  } /* namespace ADDON */
62 } /* extern "C" */
Main structure passed from kodi to addon with basic information needed to create add-on.
Definition: addon_base.h:378
Global gui Add-on to Kodi callback functions.
Definition: Select.h:29
static int open(KODI_HANDLE kodiBase, const char *heading, const char *entries[], unsigned int size, int selected, unsigned int autoclose)
callback functions from add-on to kodi
Definition: Select.cpp:36
Definition: Addon.cpp:39