citra/src/core/hle/service/csnd_snd.h

23 lines
415 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 Service {
namespace CSND {
class CSND_SND final : public Interface {
public:
CSND_SND();
2014-12-21 20:52:10 +01:00
std::string GetPortName() const override {
return "csnd:SND";
}
};
} // namespace CSND
} // namespace Service