[Windows] Remove redundant DirectSound error codes
[xbmc.git] / xbmc / platform / android / activity / IInputDeviceCallbacks.h
blobd0b3e53ccc011f763a2cf4bbbf7461e8636189b7
1 /*
2 * Copyright (C) 2016-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 class IInputDeviceCallbacks
13 public:
14 virtual ~IInputDeviceCallbacks() = default;
16 virtual void OnInputDeviceAdded(int deviceId) = 0;
17 virtual void OnInputDeviceChanged(int deviceId) = 0;
18 virtual void OnInputDeviceRemoved(int deviceId) = 0;
20 protected:
21 IInputDeviceCallbacks() = default;