aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/cam_u.cpp
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2015-01-18 17:38:43 -0800
committerGravatar archshift <admin@archshift.com>2015-01-21 12:50:18 -0800
commita68dda632854986be612d9241cba7e2b48b008bf (patch)
tree59e3c0f1dc4a5364f9b84e09678e5cc54631911e /src/core/hle/service/cam_u.cpp
parent7516ceaf93cf416ade59dfb3b17d5ea4cdb57ef2 (diff)
Stubbed cam:u service
Diffstat (limited to 'src/core/hle/service/cam_u.cpp')
-rw-r--r--src/core/hle/service/cam_u.cpp24
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 00000000..54909533
--- /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