diff options
| author | Amlal El Mahrouss <zka-holder@mahrouss-logic.com> | 2024-10-11 11:51:25 +0000 |
|---|---|---|
| committer | Amlal El Mahrouss <zka-holder@mahrouss-logic.com> | 2024-10-11 11:51:25 +0000 |
| commit | d1ddc74c70cea4d73e82f5eef95eb7db19de8c7b (patch) | |
| tree | b408569ea465119e71a489bf00a4daf6018bfcec /dev | |
| parent | faf6a99a3dd3cbf4fbacc0392dc89555db42016e (diff) | |
Update hpfs_main.cxx, fix includes for DDK.
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/hpfs/src/hpfs_main.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/hpfs/src/hpfs_main.cxx b/dev/hpfs/src/hpfs_main.cxx index 187fb3ce..a72573cb 100644 --- a/dev/hpfs/src/hpfs_main.cxx +++ b/dev/hpfs/src/hpfs_main.cxx @@ -8,9 +8,9 @@ ------------------------------------------- */ #include <hpfs/hpfs_specs.hxx> -#include <ddk/KernelStd.h> +#include <ddk/ddk.h> -static DDK_OBJECT_MANIFEST* cIFSObject = nullptr; +static DDK_OBJECT_MANIFEST* kIfsObject = nullptr; /** @brief HPFS IFS main. */ int32_t ModuleMain(void) @@ -18,7 +18,7 @@ int32_t ModuleMain(void) auto ifs_handle = KernelGetObject(0, "IFS_OBJECT"); // TODO: Register this IFS with necessary I/O functions... - cIFSObject = ifs_handle; + kIfsObject = ifs_handle; return 0; } |
