mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
25 lines
454 B
C++
25 lines
454 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
#include "result/result.hpp"
|
|
|
|
class NSService {
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, nsLogger)
|
|
|
|
// Service commands
|
|
void launchTitle(u32 messagePointer);
|
|
|
|
public:
|
|
enum class Type {
|
|
S, // ns:s
|
|
P, // ns:p
|
|
C, // ns:c
|
|
};
|
|
|
|
NSService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer, Type type);
|
|
};
|