summaryrefslogtreecommitdiffhomepage
path: root/dev/base/RunDLL64
diff options
context:
space:
mode:
Diffstat (limited to 'dev/base/RunDLL64')
-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
2 files changed, 2 insertions, 2 deletions
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**);