diff options
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; +} |
