Merge pull request #2368 from wwylele/camera-2

CAM: build the service framework with a dummy implementation
This commit is contained in:
Yuri Kunde Schlesner 2017-01-29 22:16:39 -08:00 committed by GitHub
commit 1410aa1824
14 changed files with 1517 additions and 169 deletions

View file

@ -7,6 +7,7 @@
#include <array>
#include <string>
#include "common/common_types.h"
#include "core/hle/service/cam/cam.h"
namespace Settings {
@ -106,6 +107,10 @@ struct Values {
bool enable_audio_stretching;
std::string audio_device_id;
// Camera
std::array<std::string, Service::CAM::NumCameras> camera_name;
std::array<std::string, Service::CAM::NumCameras> camera_config;
// Debugging
bool use_gdbstub;
u16 gdbstub_port;