mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
29 lines
No EOL
746 B
C++
29 lines
No EOL
746 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
#include "result/result.hpp"
|
|
|
|
class AMService {
|
|
using Handle = HorizonHandle;
|
|
|
|
Handle handle = KernelHandles::AM;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, amLogger)
|
|
|
|
// Service commands
|
|
void checkContentRights(u32 messagePointer);
|
|
void getDLCTitleInfo(u32 messagePointer);
|
|
void getPatchTitleInfo(u32 messagePointer);
|
|
void getProgramInfos(u32 messagePointer);
|
|
void getProgramList(u32 messagePointer);
|
|
void getTicketList(u32 messagePointer);
|
|
void listTitleInfo(u32 messagePointer);
|
|
void needsCleanup(u32 messagePointer);
|
|
|
|
public:
|
|
AMService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |