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 /tools | |
| 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 'tools')
| -rw-r--r-- | tools/common_zka.h (renamed from tools/common_zka.hxx) | 0 | ||||
| -rw-r--r-- | tools/framework.h (renamed from tools/framework.hxx) | 2 | ||||
| -rw-r--r-- | tools/src/make_framework.cc (renamed from tools/src/make_framework.cxx) | 2 | ||||
| -rw-r--r-- | tools/src/make_zxd.cc (renamed from tools/src/make_zxd.cxx) | 2 | ||||
| -rw-r--r-- | tools/zxd.h (renamed from tools/zxd.hxx) | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/tools/common_zka.hxx b/tools/common_zka.h index 3b7a1b19..3b7a1b19 100644 --- a/tools/common_zka.hxx +++ b/tools/common_zka.h diff --git a/tools/framework.hxx b/tools/framework.h index 416aa8b0..3fae1307 100644 --- a/tools/framework.hxx +++ b/tools/framework.h @@ -5,7 +5,7 @@ #pragma once -#include <common_zka.hxx> +#include <common_zka.h> #define kFKDLLDirectory "ZKA/DLL/" #define kFKManifestDirectory "ZKA/Manifests/" diff --git a/tools/src/make_framework.cxx b/tools/src/make_framework.cc index 2886b142..718a9ad1 100644 --- a/tools/src/make_framework.cxx +++ b/tools/src/make_framework.cc @@ -5,7 +5,7 @@ */ #include <filesystem> -#include <framework.hxx> +#include <framework.h> /// @brief This program converts a PE32+ driver, into a custom format, the ZXD. /// @note ZXD is a format for ZKA signed drivers. diff --git a/tools/src/make_zxd.cxx b/tools/src/make_zxd.cc index 94d01197..535b51db 100644 --- a/tools/src/make_zxd.cxx +++ b/tools/src/make_zxd.cc @@ -4,7 +4,7 @@ * Copyright (c) 2024 ZKA Web Services Co */ -#include <zxd.hxx> +#include <zxd.h> /// @brief This program converts a PE32+ driver, into a custom format, the ZXD. /// @note ZXD is a format for ZKA signed drivers. diff --git a/tools/zxd.hxx b/tools/zxd.h index bec145d8..07702595 100644 --- a/tools/zxd.hxx +++ b/tools/zxd.h @@ -6,7 +6,7 @@ #pragma once -#include <common_zka.hxx> +#include <common_zka.h> #define kDriverSignedExt ".zxd" #define kDriverExt ".sys" |
