1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-08-13 14:39:47 +00:00

Implement autodetect set type.

Only supports HardDisk, Directory, CdRom, DVD, BluRay for now.
This commit is contained in:
King_DuckZ 2015-12-08 13:56:46 +00:00
parent 87bc031e65
commit fe2ea40c4f
13 changed files with 499 additions and 17 deletions

View file

@ -21,6 +21,17 @@
#include <boost/program_options/variables_map.hpp>
namespace din {
enum SetSourceTypes {
SetSourceType_CDRom = 'C',
SetSourceType_Directory = 'D',
SetSourceType_DVD = 'V',
SetSourceType_BluRay = 'B',
SetSourceType_FloppyDisk = 'F',
SetSourceType_HardDisk = 'H',
SetSourceType_IomegaZip = 'Z',
SetSourceType_Other = 'O'
};
bool parse_commandline ( int parArgc, char* parArgv[], boost::program_options::variables_map& parVarMap );
} //namespace din