diff options
author | archshift <admin@archshift.com> | 2015-01-19 02:38:43 +0100 |
---|---|---|
committer | archshift <admin@archshift.com> | 2015-01-21 21:50:18 +0100 |
commit | a68dda632854986be612d9241cba7e2b48b008bf (patch) | |
tree | 59e3c0f1dc4a5364f9b84e09678e5cc54631911e /src/core/hle/service/cam_u.cpp | |
parent | Stubbed ptm:play service (diff) | |
download | yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar.gz yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar.bz2 yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar.lz yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar.xz yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar.zst yuzu-a68dda632854986be612d9241cba7e2b48b008bf.zip |
Diffstat (limited to 'src/core/hle/service/cam_u.cpp')
-rw-r--r-- | src/core/hle/service/cam_u.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/core/hle/service/cam_u.cpp b/src/core/hle/service/cam_u.cpp new file mode 100644 index 000000000..549095339 --- /dev/null +++ b/src/core/hle/service/cam_u.cpp @@ -0,0 +1,24 @@ +// Copyright 2015 Citra Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#include "common/log.h" +#include "core/hle/hle.h" +#include "core/hle/service/cam_u.h" + +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Namespace CAM_U + +namespace CAM_U { + +// Empty arrays are illegal -- commented out until an entry is added. +//const Interface::FunctionInfo FunctionTable[] = { }; + +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Interface class + +Interface::Interface() { + //Register(FunctionTable, ARRAY_SIZE(FunctionTable)); +} + +} // namespace |