[Windows] Remove redundant DirectSound error codes
[xbmc.git] / xbmc / video / guilib / VideoAction.h
blobd2b060434b3fbc2cccb647506f8495c9dfdcf0ea
1 /*
2 * Copyright (C) 2023 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 namespace KODI::VIDEO::GUILIB
13 // Note: Do not change the numerical values of the elements. Some of them are used as values for
14 // the integer settings SETTING_MYVIDEOS_SELECTACTION and SETTING_MYVIDEOS_PLAYACTION.
15 enum Action
17 ACTION_CHOOSE = 0,
18 ACTION_PLAY_OR_RESUME = 1, // if resume is possible, ask user. play from beginning otherwise
19 ACTION_RESUME = 2, // resume if possibly, play from beginning otherwise
20 ACTION_INFO = 3,
21 // 4 unused
22 ACTION_PLAY_FROM_BEGINNING = 5, // play from beginning, also if resume would be possible
23 ACTION_PLAYPART = 6,
24 ACTION_QUEUE = 7,
26 } // namespace KODI::VIDEO::GUILIB