diff options
| author | Amlal <amlal@el-mahrouss-logic.com> | 2024-09-22 17:46:11 +0200 |
|---|---|---|
| committer | Amlal <amlal@el-mahrouss-logic.com> | 2024-09-22 17:46:11 +0200 |
| commit | 8719b4570a2d10dd49a0d3a47e24f5c55bdda85e (patch) | |
| tree | ba095740888f3768e08b2ea058b0ea6da2d0403d /dev/hpfs/src | |
| parent | 45944b3d2dab04b763fcc6d10164fe8069e60b08 (diff) | |
:boom: A big refactor on the filesystem structure.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/hpfs/src')
| -rw-r--r-- | dev/hpfs/src/hpfs_main.cxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dev/hpfs/src/hpfs_main.cxx b/dev/hpfs/src/hpfs_main.cxx new file mode 100644 index 00000000..eaa64dc5 --- /dev/null +++ b/dev/hpfs/src/hpfs_main.cxx @@ -0,0 +1,20 @@ +/* ------------------------------------------- + + Copyright ZKA Technologies. + + FILE: IFSMain.cxx + PURPOSE: HPFS IFS entrypoint. + +------------------------------------------- */ + +#include <hpfs/hpfs_specs.hxx> +#include <ddk/KernelStd.h> + +/** @brief HPFS IFS main. */ +HPFS_INT32 ModuleMain(HPFS_VOID) +{ + auto ifs_handle = KernelGetObject(0, "IFS_OBJECT"); + // TODO: Register this IFS with necessary I/O functions... + + return 0; +} |
