mirror of
https://github.com/azahar-emu/ArticBaseServer
synced 2025-11-06 23:20:06 +01:00
19 lines
460 B
C++
19 lines
460 B
C++
#pragma once
|
|
#include "3ds.h"
|
|
#include "map"
|
|
#include "ArticBaseCommon.hpp"
|
|
#include "ArticBaseServer.hpp"
|
|
#include "memory.h"
|
|
#include "string"
|
|
|
|
namespace ArticBaseFunctions {
|
|
extern std::map<std::string, void(*)(ArticBaseServer::MethodInterface& out)> functionHandlers;
|
|
extern std::vector<bool(*)()> setupFunctions;
|
|
extern std::vector<bool(*)()> destructFunctions;
|
|
|
|
enum class HandleType {
|
|
FILE,
|
|
DIR,
|
|
ARCHIVE
|
|
};
|
|
}; |