2020-08-06 23:21:12 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
2021-12-26 17:47:58 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2020-08-06 23:21:12 +00:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 17:47:58 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2020-08-06 23:21:12 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-08-17 12:00:13 +00:00
|
|
|
#ifndef DIRECTOR_DETECTION_H
|
|
|
|
#define DIRECTOR_DETECTION_H
|
|
|
|
|
2020-08-26 11:11:04 +00:00
|
|
|
#include "engines/advancedDetector.h"
|
|
|
|
|
2020-08-06 23:21:12 +00:00
|
|
|
namespace Director {
|
|
|
|
|
2020-08-26 11:11:04 +00:00
|
|
|
enum DirectorGameGID {
|
|
|
|
GID_GENERIC,
|
|
|
|
GID_TEST,
|
|
|
|
GID_TESTALL
|
|
|
|
};
|
|
|
|
|
2020-08-06 23:21:12 +00:00
|
|
|
struct DirectorGameDescription {
|
|
|
|
ADGameDescription desc;
|
|
|
|
|
|
|
|
DirectorGameGID gameGID;
|
|
|
|
uint16 version;
|
|
|
|
};
|
|
|
|
|
2021-06-12 15:40:01 +00:00
|
|
|
extern const char *directoryGlobs[];
|
|
|
|
|
2020-08-06 23:21:12 +00:00
|
|
|
} // End of namespace Director
|
2020-08-17 12:00:13 +00:00
|
|
|
|
|
|
|
#endif // DIRECTOR_DETECTION_H
|