/// MediaMax CD-3 is a copy protection for audio CDs created by SunnComm, which once installed, restricted users by only allowing a limited number of copies to be made, and only using Windows Media Player.
/// It appears to accomplish this using the official Windows Media Data Session Toolkit.
/// List of discs known to contain MediaMax CD-3: https://en.wikipedia.org/wiki/List_of_compact_discs_sold_with_MediaMax_CD-3
/// TODO: Add support for detecting the Mac version, which is present on "All That I Am" by Santana (Barcode 8 2876-59773-2 6)
// Found on "All That I Am" by Santana (Barcode 8 2876-59773-2 6)
newPathMatchSet(newList<PathMatch>
{
// TODO: Verify if these are OR or AND
newPathMatch("PlayDisc.exe",useEndsWith:true),
newPathMatch("PlayDisc.xml",useEndsWith:true),
},"MediaMax CD-3"),
// Found on "Contraband" by Velvet Revolver (Barcode 8 28766 05242 8)
// "SCCD3X01.dll" should already be detected by the content checks, but not "SCCD3X02.dll".
newPathMatchSet(newList<PathMatch>
{
// TODO: Verify if these are OR or AND
newPathMatch("SCCD3X01.dll",useEndsWith:true),
newPathMatch("SCCD3X02.dll",useEndsWith:true),
},"MediaMax CD-3"),
// Found on "Contraband" by Velvet Revolver (Barcode 8 28766 05242 8)
// "LaunchCD.ini" needs to be confirmed to always be present as well, but it's added along with the exe check to minimize the risk of false positives due to it being a generic name. There is also a "launchcd.xml" that may also be checked for if needed.