Stubbed ptm:play service

This commit is contained in:
archshift
2015-01-18 15:20:28 -08:00
parent 8946df97b5
commit 7516ceaf93
4 changed files with 55 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace PTM_PLAY
namespace PTM_PLAY {
class Interface : public Service::Interface {
public:
Interface();
std::string GetPortName() const override {
return "ptm:play";
}
};
} // namespace