mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-28 01:57:51 -05:00
Added am:app service stub.
Apparently nothing at all is known about this service...
This commit is contained in:
23
src/core/hle/service/am_app.cpp
Normal file
23
src/core/hle/service/am_app.cpp
Normal file
@ -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
|
Reference in New Issue
Block a user