yuzu/src/core/hle/service/am_app.h

24 lines
494 B
C
Raw Normal View History

// Copyright 2014 Citra Emulator Project
2014-12-17 06:38:14 +01:00
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace AM_APP
namespace AM_APP {
class Interface : public Service::Interface {
public:
Interface();
std::string GetPortName() const override {
return "am:app";
}
};
} // namespace