diff options
Diffstat (limited to 'dev/HPFS/Sources')
| -rw-r--r-- | dev/HPFS/Sources/IFSMain.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dev/HPFS/Sources/IFSMain.cxx b/dev/HPFS/Sources/IFSMain.cxx index d107db2a..c2ae5b0a 100644 --- a/dev/HPFS/Sources/IFSMain.cxx +++ b/dev/HPFS/Sources/IFSMain.cxx @@ -8,9 +8,13 @@ ------------------------------------------- */ #include <HPFS/Defines.hxx> +#include <DDK/KernelStd.h> /** @brief HPFS IFS main. */ -HPFS_INT32 IFSStart(HPFS_VOID) +HPFS_INT32 ModuleMain(HPFS_VOID) { + auto ifs_handle = KernelGetProperty(0, "\\.\\IFSObject"); + // TODO: Register IFS... + return 0; } |
