mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
19 lines
No EOL
384 B
C++
19 lines
No EOL
384 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
|
|
class NFCService {
|
|
Handle handle = KernelHandles::NFC;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, nfcLogger)
|
|
|
|
// Service commands
|
|
void initialize(u32 messagePointer);
|
|
|
|
public:
|
|
NFCService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |