diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-10-21 20:23:36 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-10-21 20:23:36 +0200 |
| commit | d48cbe75ef29a9c67c9d176bf58e56ea6448fb9e (patch) | |
| tree | 89cbd6b7e23802f92bf3158868f4dc33c088e516 /dev/hpfs | |
| parent | 21b3da78f806d6765f9dffa6a84c21346f171cee (diff) | |
IMP: Major refactor of header and source files extensions.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/hpfs')
| -rw-r--r-- | dev/hpfs/hpfs.json | 2 | ||||
| -rw-r--r-- | dev/hpfs/hpfs_specs.h (renamed from dev/hpfs/hpfs_specs.hxx) | 2 | ||||
| -rw-r--r-- | dev/hpfs/src/hpfs_main.cc (renamed from dev/hpfs/src/hpfs_main.cxx) | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/dev/hpfs/hpfs.json b/dev/hpfs/hpfs.json index 5f01ab74..a6f20f66 100644 --- a/dev/hpfs/hpfs.json +++ b/dev/hpfs/hpfs.json @@ -2,7 +2,7 @@ "compiler_path": "x86_64-w64-mingw32-g++", "compiler_std": "c++20", "headers_path": ["../"], - "sources_path": ["src/*.cxx"], + "sources_path": ["src/*.cc"], "output_name": "hpfs.sys", "compiler_flags": [ "-fPIC", diff --git a/dev/hpfs/hpfs_specs.hxx b/dev/hpfs/hpfs_specs.h index 5b22ce31..aad694fa 100644 --- a/dev/hpfs/hpfs_specs.hxx +++ b/dev/hpfs/hpfs_specs.h @@ -2,7 +2,7 @@ Copyright ZKA Web Services Co. - FILE: Defines.hxx + FILE: Defines.h PURPOSE: HPFS IFS defines. ------------------------------------------- */ diff --git a/dev/hpfs/src/hpfs_main.cxx b/dev/hpfs/src/hpfs_main.cc index ce712f2c..e65b03dc 100644 --- a/dev/hpfs/src/hpfs_main.cxx +++ b/dev/hpfs/src/hpfs_main.cc @@ -7,7 +7,7 @@ ------------------------------------------- */ -#include <hpfs/hpfs_specs.hxx> +#include <hpfs/hpfs_specs.h> static DDK_OBJECT_MANIFEST* kIfsObject = nullptr; |
