mirror of
https://github.com/XorTroll/uLaunch
synced 2024-11-23 12:23:03 +00:00
28 lines
No EOL
498 B
C++
28 lines
No EOL
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)
|
|
};
|
|
};
|
|
} |