summaryrefslogtreecommitdiffstats
path: root/xbmc/media/MediaLockState.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/media/MediaLockState.h')
-rw-r--r--xbmc/media/MediaLockState.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/xbmc/media/MediaLockState.h b/xbmc/media/MediaLockState.h
new file mode 100644
index 0000000..48c1183
--- /dev/null
+++ b/xbmc/media/MediaLockState.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright (C) 2005-2020 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#pragma once
+
+typedef enum
+{
+ LOCK_STATE_NO_LOCK = 0,
+ LOCK_STATE_LOCK_BUT_UNLOCKED = 1,
+ LOCK_STATE_LOCKED = 2,
+} MediaLockState;