// This file is part of noxos and licensed under the MIT open source license #ifndef NOXOS_MODULE_H #define NOXOS_MODULE_H #include #include #include typedef struct { string_t name; string_t path; elf_executable_T* executable; } module_T; #endif //NOXOS_MODULE_H