Set numerical values for XmlMediaType.

This commit is contained in:
2019-03-24 00:08:24 +00:00
parent dd6d009a42
commit a74b0549bc
2 changed files with 5 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ContentModelStore">
<e p="$APPLICATION_CONFIG_DIR$/consoles/db" t="IncludeRecursive" />
<e p="$APPLICATION_CONFIG_DIR$/extensions" t="IncludeRecursive" />
<e p="$USER_HOME$/.Rider2018.3/system/extResources" t="IncludeRecursive" />
<e p="$USER_HOME$/.Rider2018.3/system/resharper-host/local/Transient/ReSharperHost/v183/SolutionCaches/_DiscImageChef.-1491758497.00" t="ExcludeRecursive" />

View File

@@ -285,19 +285,19 @@ namespace DiscImageChef.CommonTypes.Enums
/// <summary>
/// Purely optical discs
/// </summary>
OpticalDisc,
OpticalDisc = 0,
/// <summary>
/// Media that is physically block-based or abstracted like that
/// </summary>
BlockMedia,
BlockMedia = 1,
/// <summary>
/// Media that can be accessed by-byte or by-bit, like chips
/// </summary>
LinearMedia,
LinearMedia = 2,
/// <summary>
/// Media that can only store data when it is modulated to audio
/// </summary>
AudioMedia
AudioMedia = 3
}
/// <summary> CD flags bitmask</summary>