kodi
Input_Gamecontroller.h
1 /*
2  * Copyright (C) 2020 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 #include "peripherals/PeripheralTypes.h"
10 #include "threads/CriticalSection.h"
11 
12 #import <Foundation/Foundation.h>
13 
14 enum class GCCONTROLLER_TYPE;
16 
17 @interface Input_GCController : NSObject
18 
19 - (instancetype)initWithName:(CBPeripheralBusGCControllerManager*)callbackManager;
20 - (PERIPHERALS::PeripheralScanResults)GetGCDevices;
21 - (GCCONTROLLER_TYPE)GetGCControllerType:(int)deviceID;
22 - (int)checkOptionalButtons:(int)deviceID;
23 
24 @end
Definition: PeripheralBusGCControllerManager.h:21
Definition: RetroPlayerInput.h:15
Definition: Input_Gamecontroller.h:17