mirror of
https://github.com/izzy2lost/Panda3DS.git
synced 2026-03-10 12:38:37 -07:00
24 lines
534 B
C++
24 lines
534 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
#include "result/result.hpp"
|
|
|
|
class ACTService {
|
|
using Handle = HorizonHandle;
|
|
|
|
Handle handle = KernelHandles::ACT;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, actLogger)
|
|
|
|
// Service commands
|
|
void initialize(u32 messagePointer);
|
|
void generateUUID(u32 messagePointer);
|
|
void getAccountDataBlock(u32 messagePointer);
|
|
|
|
public:
|
|
ACTService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |