suyu/src/core/hle/service/cam/cam_s.cpp
2016-09-18 09:38:01 +09:00

18 lines
449 B
C++

// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/hle/service/cam/cam_s.h"
namespace Service {
namespace CAM {
// Empty arrays are illegal -- commented out until an entry is added.
// const Interface::FunctionInfo FunctionTable[] = { };
CAM_S_Interface::CAM_S_Interface() {
// Register(FunctionTable);
}
} // namespace CAM
} // namespace Service