1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-07-02 14:04:22 +00:00

Print human-readable autodetected media type.

This commit is contained in:
King_DuckZ 2015-12-10 16:31:11 +00:00
parent 6c30621400
commit 10b9be1f85
4 changed files with 51 additions and 2 deletions

View file

@ -18,6 +18,8 @@
#ifndef id700AFD0F33634ACC88079BB8853A9E13
#define id700AFD0F33634ACC88079BB8853A9E13
#include <string>
namespace dinlib {
enum MediaTypes {
MediaType_CDRom = 'C',
@ -29,6 +31,8 @@ namespace dinlib {
MediaType_IomegaZip = 'Z',
MediaType_Other = 'O'
};
const std::string& media_type_to_str ( MediaTypes parType );
} //namespace dinlib
#endif