diff options
| author | archshift <admin@archshift.com> | 2014-12-14 22:48:55 -0800 |
|---|---|---|
| committer | archshift <admin@archshift.com> | 2014-12-15 15:32:41 -0800 |
| commit | 6b51683bb1e8772260a51a1bbf029fce773ecad8 (patch) | |
| tree | cfb9e24b59883c1c24383094f7198e9fac3dccb9 /src/core/hle/service/am_app.cpp | |
| parent | 1ee740898ab6951e21fad864a40260c7d3c1027f (diff) | |
Added am:app service stub.
Apparently nothing at all is known about this service...
Diffstat (limited to 'src/core/hle/service/am_app.cpp')
| -rw-r--r-- | src/core/hle/service/am_app.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/service/am_app.cpp b/src/core/hle/service/am_app.cpp new file mode 100644 index 000000000..05c34832b --- /dev/null +++ b/src/core/hle/service/am_app.cpp @@ -0,0 +1,23 @@ +// Copyright 2014 Citra Emulator Project +// Licensed under GPLv2+ +// Refer to the license.txt file included. + +#include "common/log.h" +#include "core/hle/hle.h" +#include "core/hle/service/am_app.h" + +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Namespace AM_APP + +namespace AM_APP { + +const Interface::FunctionInfo FunctionTable[] = { +}; +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Interface class + +Interface::Interface() { + Register(FunctionTable, ARRAY_SIZE(FunctionTable)); +} + +} // namespace |
