/* * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- * Copyright (c) 2011-2024, Lukas Weber . * Copyright (c) 2012-2024, Andrei Alexeyev . */ #include "dynstage.h" #include "stages/stages.h" void dynstage_init(void) { } void dynstage_init_monitoring(void) { } void dynstage_shutdown(void) { } bool dynstage_reload_library(void) { return false; } StagesExports *dynstage_get_exports(void) { return &stages_exports; } uint32_t dynstage_get_generation(void) { return 0; }