kodi
System.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 <string>
12 
13 namespace ADDON
14 {
15 
17 {
18  static void Register();
19  static void* Get(const std::string &name, const std::string &version);
20 
21  static void* get_jni_env();
22  static int get_sdk_version();
23  static const char *get_class_name();
24 };
25 
26 } //namespace ADDON
Definition: System.h:16
Definition: Addon.cpp:39