2018-05-05 03:16:40 +01:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
#include <stratosphere/iserviceobject.hpp>
|
|
|
|
|
|
|
|
enum InformationCmd {
|
|
|
|
Information_Cmd_GetTitleId = 0,
|
|
|
|
};
|
|
|
|
|
2018-06-03 06:46:27 +01:00
|
|
|
class InformationService final : IServiceObject {
|
2018-05-05 03:16:40 +01:00
|
|
|
public:
|
2018-06-03 06:46:27 +01: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 03:16:40 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
/* Actual commands. */
|
|
|
|
std::tuple<Result, u64> get_title_id(u64 pid);
|
2018-06-03 06:46:27 +01:00
|
|
|
};
|