cOMS/module/WebModule.h
Dennis Eichhorn 2059cc6e77
Some checks failed
CodeQL / Analyze (${{ matrix.language }}) (autobuild, c-cpp) (push) Has been cancelled
Microsoft C++ Code Analysis / Analyze (push) Has been cancelled
update
2025-06-14 19:10:16 +00:00

19 lines
418 B
C

#ifndef COMS_MODULE_WEB_H
#define COMS_MODULE_WEB_H
#include "../system/Library.cpp"
#include "../log/DebugContainer.h"
#include "../memory/RingMemory.h"
#include "../../models/ApplicationSettings.h"
struct ApplicationData;
typedef void dll_load_module(DebugContainer*);
typedef void dll_load_functions(void*);
struct WebModule {
dll_load_module* load_module;
dll_load_functions* load_functions;
};
#endif