diff options
| author | bunnei <bunneidev@gmail.com> | 2015-01-22 13:25:19 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-01-22 13:25:19 -0500 |
| commit | 92550013cf316cd4ee631d11429bddb7ee0b5e94 (patch) | |
| tree | dbe511b60590488f84cfb740ced8c99511568017 /src/core/hle/service/cam_u.cpp | |
| parent | 9f501c55f981c32df33ceb3813d8d72b392f4711 (diff) | |
| parent | a68dda632854986be612d9241cba7e2b48b008bf (diff) | |
Merge pull request #493 from archshift/ptmplay
Stubbed some services
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 |
