mirror of
https://github.com/azahar-emu/ArticProtocol.git
synced 2025-06-25 14:22:42 -04:00
18 lines
No EOL
544 B
C++
18 lines
No EOL
544 B
C++
#pragma once
|
|
#include "3ds.h"
|
|
#include "map"
|
|
#include "ArticProtocolCommon.hpp"
|
|
#include "ArticProtocolServer.hpp"
|
|
#include "memory.h"
|
|
#include "string"
|
|
|
|
namespace ArticFunctions {
|
|
// All method handlers should be defined here
|
|
extern std::map<std::string, void(*)(ArticProtocolServer::MethodInterface& out)> functionHandlers;
|
|
|
|
// All setup functions should be defined here
|
|
extern std::vector<bool(*)()> setupFunctions;
|
|
|
|
// All destruct functions should be defined here
|
|
extern std::vector<bool(*)()> destructFunctions;
|
|
}; |