mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
35 lines
No EOL
807 B
C++
35 lines
No EOL
807 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
#include "result/result.hpp"
|
|
|
|
class Kernel;
|
|
|
|
class NIMService {
|
|
using Handle = HorizonHandle;
|
|
|
|
Memory& mem;
|
|
Kernel& kernel;
|
|
MAKE_LOG_FUNCTION(log, nimLogger)
|
|
|
|
std::optional<Handle> backgroundSystemUpdateEvent;
|
|
|
|
// Service commands
|
|
void getAutoTitleDownloadTaskInfos(u32 messagePointer);
|
|
void getBackgroundEventForMenu(u32 messagePointer);
|
|
void getTaskInfos(u32 messagePointer);
|
|
void initialize(u32 messagePointer);
|
|
void isPendingAutoTitleDownloadTasks(u32 messagePointer);
|
|
|
|
public:
|
|
enum class Type {
|
|
AOC, // nim:aoc
|
|
U, // nim:u
|
|
};
|
|
|
|
NIMService(Memory& mem, Kernel& kernel) : mem(mem), kernel(kernel) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer, Type type);
|
|
}; |