mirror of
https://github.com/XorTroll/uLaunch
synced 2024-11-27 06:10:20 +00:00
28 lines
498 B
C++
28 lines
498 B
C++
|
|
||
|
#pragma once
|
||
|
#include <q_Include.hpp>
|
||
|
#include <stratosphere.hpp>
|
||
|
|
||
|
namespace ipc
|
||
|
{
|
||
|
class IDaemonService : public IServiceObject
|
||
|
{
|
||
|
private:
|
||
|
|
||
|
enum class CommandId
|
||
|
{
|
||
|
GetLatestMessage = 0
|
||
|
};
|
||
|
|
||
|
public:
|
||
|
|
||
|
Result GetLatestMessage(Out<u32> msg);
|
||
|
|
||
|
public:
|
||
|
|
||
|
DEFINE_SERVICE_DISPATCH_TABLE
|
||
|
{
|
||
|
MAKE_SERVICE_COMMAND_META(IDaemonService, GetLatestMessage)
|
||
|
};
|
||
|
};
|
||
|
}
|