summaryrefslogtreecommitdiffhomepage
path: root/dev/base
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-10-21 20:23:36 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-10-21 20:23:36 +0200
commitd48cbe75ef29a9c67c9d176bf58e56ea6448fb9e (patch)
tree89cbd6b7e23802f92bf3158868f4dc33c088e516 /dev/base
parent21b3da78f806d6765f9dffa6a84c21346f171cee (diff)
IMP: Major refactor of header and source files extensions.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/base')
-rw-r--r--dev/base/EncryptFS/build.json2
-rw-r--r--dev/base/EncryptFS/disk_crypt.h (renamed from dev/base/EncryptFS/disk_crypt.hxx)4
-rw-r--r--dev/base/EncryptFS/src/disk_crypt.cc (renamed from dev/base/EncryptFS/src/disk_crypt.cxx)2
-rw-r--r--dev/base/FireWall/fwapi.h (renamed from dev/base/FireWall/fwapi.hxx)2
-rw-r--r--dev/base/FireWall/src/fwentry.cc2
-rw-r--r--dev/base/RunDLL64/build.json2
-rw-r--r--dev/base/RunDLL64/src/dll.cc (renamed from dev/base/RunDLL64/src/dll.cxx)2
-rw-r--r--dev/base/RunXPCOM/build.json2
-rw-r--r--dev/base/RunXPCOM/src/xpcom.cc (renamed from dev/base/RunXPCOM/src/xpcom.cxx)2
-rw-r--r--dev/base/View/pdf.h (renamed from dev/base/View/pdf.hxx)2
-rw-r--r--dev/base/View/src/app.cc (renamed from dev/base/View/src/app.cxx)0
-rw-r--r--dev/base/View/src/pdf.cc (renamed from dev/base/View/src/pdf.cxx)2
-rw-r--r--dev/base/View/src/viewer_box.cc (renamed from dev/base/View/src/viewer_box.cxx)0
-rw-r--r--dev/base/View/view.json2
-rw-r--r--dev/base/View/viewer_box.h (renamed from dev/base/View/viewer_box.hxx)0
15 files changed, 13 insertions, 13 deletions
diff --git a/dev/base/EncryptFS/build.json b/dev/base/EncryptFS/build.json
index 1f9b018e..4dcefa38 100644
--- a/dev/base/EncryptFS/build.json
+++ b/dev/base/EncryptFS/build.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": "efs.zsc",
"compiler_flags": [
"-ffreestanding",
diff --git a/dev/base/EncryptFS/disk_crypt.hxx b/dev/base/EncryptFS/disk_crypt.h
index 3ec4799d..981ebc78 100644
--- a/dev/base/EncryptFS/disk_crypt.hxx
+++ b/dev/base/EncryptFS/disk_crypt.h
@@ -2,7 +2,7 @@
Copyright ZKA Web Services Co.
- File: disk_encrypt.hxx
+ File: disk_encrypt.h
Purpose: Disk Encryption File System
Revision History:
@@ -13,7 +13,7 @@
#pragma once
-#include <FSKit/NeFS.hxx>
+#include <FSKit/NeFS.h>
namespace Kernel
{
diff --git a/dev/base/EncryptFS/src/disk_crypt.cxx b/dev/base/EncryptFS/src/disk_crypt.cc
index 031a2528..334e2d4d 100644
--- a/dev/base/EncryptFS/src/disk_crypt.cxx
+++ b/dev/base/EncryptFS/src/disk_crypt.cc
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <EncryptFS/disk_crypt.hxx>
+#include <EncryptFS/disk_crypt.h>
enum
{
diff --git a/dev/base/FireWall/fwapi.hxx b/dev/base/FireWall/fwapi.h
index dfa9d30c..cd916657 100644
--- a/dev/base/FireWall/fwapi.hxx
+++ b/dev/base/FireWall/fwapi.h
@@ -4,4 +4,4 @@
#pragma once
-#include <sci/sci_base.hxx>
+#include <sci/sci_base.h>
diff --git a/dev/base/FireWall/src/fwentry.cc b/dev/base/FireWall/src/fwentry.cc
index 37e5f304..3fb739f7 100644
--- a/dev/base/FireWall/src/fwentry.cc
+++ b/dev/base/FireWall/src/fwentry.cc
@@ -2,4 +2,4 @@
* Copyright (c) 2024 ZKA Web Services Co
*/
-#include <FireWall/fwapi.hxx>
+#include <FireWall/fwapi.h>
diff --git a/dev/base/RunDLL64/build.json b/dev/base/RunDLL64/build.json
index c53373a9..b129f8e4 100644
--- a/dev/base/RunDLL64/build.json
+++ b/dev/base/RunDLL64/build.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": "rundll64.exe",
"compiler_flags": [
"-ffreestanding",
diff --git a/dev/base/RunDLL64/src/dll.cxx b/dev/base/RunDLL64/src/dll.cc
index 49e69fc4..ee3cdfa6 100644
--- a/dev/base/RunDLL64/src/dll.cxx
+++ b/dev/base/RunDLL64/src/dll.cc
@@ -2,7 +2,7 @@
* Copyright (c) 2024 ZKA Web Services Co
*/
-#include <sci/sci_base.hxx>
+#include <sci/sci_base.h>
typedef int (*MainKind)(int, char**);
diff --git a/dev/base/RunXPCOM/build.json b/dev/base/RunXPCOM/build.json
index 45d249b8..ec91d543 100644
--- a/dev/base/RunXPCOM/build.json
+++ b/dev/base/RunXPCOM/build.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": "runxpcom.exe",
"compiler_flags": [
"-ffreestanding",
diff --git a/dev/base/RunXPCOM/src/xpcom.cxx b/dev/base/RunXPCOM/src/xpcom.cc
index 1b94ba07..3fcfc708 100644
--- a/dev/base/RunXPCOM/src/xpcom.cxx
+++ b/dev/base/RunXPCOM/src/xpcom.cc
@@ -2,7 +2,7 @@
* Copyright (c) 2024 ZKA Web Services Co
*/
-#include <sci/sci_base.hxx>
+#include <sci/sci_base.h>
typedef SInt32 (*RPCProcKind)(IUnknown*);
diff --git a/dev/base/View/pdf.hxx b/dev/base/View/pdf.h
index aac8c5a7..b28806d7 100644
--- a/dev/base/View/pdf.hxx
+++ b/dev/base/View/pdf.h
@@ -6,7 +6,7 @@
#pragma once
-#include <sci/sci_base.hxx>
+#include <sci/sci_base.h>
namespace View::PDF
{
diff --git a/dev/base/View/src/app.cxx b/dev/base/View/src/app.cc
index e69de29b..e69de29b 100644
--- a/dev/base/View/src/app.cxx
+++ b/dev/base/View/src/app.cc
diff --git a/dev/base/View/src/pdf.cxx b/dev/base/View/src/pdf.cc
index c226e306..2f5e628e 100644
--- a/dev/base/View/src/pdf.cxx
+++ b/dev/base/View/src/pdf.cc
@@ -4,4 +4,4 @@
------------------------------------------- */
-#include <View/pdf.hxx>
+#include <View/pdf.h>
diff --git a/dev/base/View/src/viewer_box.cxx b/dev/base/View/src/viewer_box.cc
index e69de29b..e69de29b 100644
--- a/dev/base/View/src/viewer_box.cxx
+++ b/dev/base/View/src/viewer_box.cc
diff --git a/dev/base/View/view.json b/dev/base/View/view.json
index 9033eaec..ba9f979f 100644
--- a/dev/base/View/view.json
+++ b/dev/base/View/view.json
@@ -2,7 +2,7 @@
"compiler_path": "x86_64-w64-mingw32-g++",
"compiler_std": "c++20",
"headers_path": ["../../", "....//zka"],
- "sources_path": ["src/*.cxx"],
+ "sources_path": ["src/*.cc"],
"output_name": "View.exe",
"compiler_flags": [
"-fPIC",
diff --git a/dev/base/View/viewer_box.hxx b/dev/base/View/viewer_box.h
index e69de29b..e69de29b 100644
--- a/dev/base/View/viewer_box.hxx
+++ b/dev/base/View/viewer_box.h