[Windows] Fix driver version detection of AMD RDNA+ GPU on Windows 10
[xbmc.git] / xbmc / settings / DiscSettings.h
blob9d62eea18f93d3426cc82058fe4e3a99076a57c4
1 /*
2 * Copyright (C) 2005-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 /**
12 * Playback settings
14 enum BDPlaybackMode
16 BD_PLAYBACK_SIMPLE_MENU = 0,
17 BD_PLAYBACK_DISC_MENU,
18 BD_PLAYBACK_MAIN_TITLE,
21 #include "settings/lib/ISettingCallback.h"
23 class CDiscSettings : public ISettingCallback
25 public:
26 /* ISettingCallback*/
28 static CDiscSettings& GetInstance();
29 void OnSettingChanged(const std::shared_ptr<const CSetting>& setting) override;
31 private:
32 CDiscSettings() = default;
33 ~CDiscSettings() override = default;