diff options
Diffstat (limited to 'dev/sci')
| -rw-r--r-- | dev/sci/makefile | 2 | ||||
| -rw-r--r-- | dev/sci/sci.json | 2 | ||||
| -rw-r--r-- | dev/sci/sci_base.h (renamed from dev/sci/sci_base.hxx) | 8 | ||||
| -rw-r--r-- | dev/sci/sci_hint.h (renamed from dev/sci/sci_hint.hxx) | 0 | ||||
| -rw-r--r-- | dev/sci/sci_lpc.h (renamed from dev/sci/sci_lpc.hxx) | 0 | ||||
| -rw-r--r-- | dev/sci/source_deploy.xml | 2 | ||||
| -rw-r--r-- | dev/sci/src/sci_mm.cc (renamed from dev/sci/src/sci_mm.cxx) | 2 | ||||
| -rw-r--r-- | dev/sci/xpcom_core.h (renamed from dev/sci/xpcom_core.hxx) | 0 |
8 files changed, 8 insertions, 8 deletions
diff --git a/dev/sci/makefile b/dev/sci/makefile index 05593216..f18fbeff 100644 --- a/dev/sci/makefile +++ b/dev/sci/makefile @@ -9,4 +9,4 @@ OUTPUT=sci.dll .PHONY: build-sci
build-sci:
- $(CC) $(wildcard *.cxx) $(FLAGS) -o $(OUTPUT)
+ $(CC) $(wildcard .cc) $(FLAGS) -o $(OUTPUT)
diff --git a/dev/sci/sci.json b/dev/sci/sci.json index 32a9238b..104be044 100644 --- a/dev/sci/sci.json +++ b/dev/sci/sci.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": "sci.dll", "compiler_flags": [ "-fPIC", diff --git a/dev/sci/sci_base.hxx b/dev/sci/sci_base.h index de87318b..f9babe13 100644 --- a/dev/sci/sci_base.hxx +++ b/dev/sci/sci_base.h @@ -2,7 +2,7 @@ Copyright ZKA Web Services Co.
-File: sci_base.hxx
+File: sci_base.h
Purpose: SCI core header file (C++ only).
------------------------------------------- */
@@ -10,7 +10,7 @@ Purpose: SCI core header file (C++ only). #ifndef __SCI_BASE_HXX__
#define __SCI_BASE_HXX__
-#include <sci/sci_hint.hxx>
+#include <sci/sci_hint.h>
#define ATTRIBUTE(X) __attribute__((X))
@@ -37,10 +37,10 @@ typedef void* VoidPtr; typedef __UINTPTR_TYPE__ UIntPtr;
typedef char Char;
-#include <sci/sci_lpc.hxx>
+#include <sci/sci_lpc.h>
#ifdef __XPCOM_IMPL__
-#include <sci/xpcom_core.hxx>
+#include <sci/xpcom_core.h>
#else
class IUnknown; // Refrenced from an IDB entry.
class ICLSID; // From the IDB, the constructor of the object, e.g: IAppCLSID.
diff --git a/dev/sci/sci_hint.hxx b/dev/sci/sci_hint.h index 967d0ad0..967d0ad0 100644 --- a/dev/sci/sci_hint.hxx +++ b/dev/sci/sci_hint.h diff --git a/dev/sci/sci_lpc.hxx b/dev/sci/sci_lpc.h index c634b790..c634b790 100644 --- a/dev/sci/sci_lpc.hxx +++ b/dev/sci/sci_lpc.h diff --git a/dev/sci/source_deploy.xml b/dev/sci/source_deploy.xml index fda225db..30c64973 100644 --- a/dev/sci/source_deploy.xml +++ b/dev/sci/source_deploy.xml @@ -1,6 +1,6 @@ <SourceDeploy>
<HiddenFiles>
- <SourceFile>*.hxx</SourceFile>
+ <SourceFile>*.h</SourceFile>
<SourceFile>*.idl</SourceFile>
</HiddenFiles>
</SourceDeploy>
diff --git a/dev/sci/src/sci_mm.cxx b/dev/sci/src/sci_mm.cc index 9d000d91..a776fe4a 100644 --- a/dev/sci/src/sci_mm.cxx +++ b/dev/sci/src/sci_mm.cc @@ -4,7 +4,7 @@ ------------------------------------------- */
-#include <sci/sci_base.hxx>
+#include <sci/sci_base.h>
/// @file sci_base.cxx
/// @brief Base Memory Manager functions for SCI.dll
diff --git a/dev/sci/xpcom_core.hxx b/dev/sci/xpcom_core.h index c86210b5..c86210b5 100644 --- a/dev/sci/xpcom_core.hxx +++ b/dev/sci/xpcom_core.h |
