2018-05-05 02:16:40 +00:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
2018-06-14 23:50:01 +00:00
|
|
|
#include <stratosphere.hpp>
|
2018-05-05 02:16:40 +00:00
|
|
|
#include <stratosphere/iserviceobject.hpp>
|
|
|
|
|
|
|
|
enum InformationCmd {
|
|
|
|
Information_Cmd_GetTitleId = 0,
|
|
|
|
};
|
|
|
|
|
2018-06-14 23:50:01 +00:00
|
|
|
class InformationService final : public IServiceObject {
|
2018-05-05 02:16:40 +00:00
|
|
|
public:
|
2018-06-03 05:46:27 +00:00
|
|
|
Result dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size) override;
|
|
|
|
Result handle_deferred() override;
|
2018-05-05 02:16:40 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/* Actual commands. */
|
|
|
|
std::tuple<Result, u64> get_title_id(u64 pid);
|
2018-06-03 05:46:27 +00:00
|
|
|
};
|