This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/kernel/include/hilbert/kernel/load-app.hpp

17 lines
292 B
C++

#pragma once
#include <hilbert/kernel/app-memory.hpp>
#include <hilbert/kernel/vfile.hpp>
namespace hilbert::kernel {
enum class load_app_result {
success,
not_app,
io_error
};
load_app_result load_app(
vfile::vfile &file, app_memory &into, uint64_t &entry_out);
}