summarylogtreecommitdiffstats
path: root/esee
diff options
context:
space:
mode:
authorsL1pKn072020-12-07 19:14:31 +0100
committersL1pKn072020-12-07 19:14:31 +0100
commitbbdecf8d3fce006dca9d13b2046e161ffe85aee7 (patch)
tree513c2112bb1d21d3ceb0d4042073fc514e4e4af1 /esee
parent2b777c8d829dfe63b15282f1af0d4ffa47b59e18 (diff)
downloadaur-vapoursynth-plugin-vcmod.tar.gz
bump
Diffstat (limited to 'esee')
-rw-r--r--esee24
1 files changed, 24 insertions, 0 deletions
diff --git a/esee b/esee
new file mode 100644
index 000000000000..c63bbca37b66
--- /dev/null
+++ b/esee
@@ -0,0 +1,24 @@
+diff --git a/modNeural.cpp.esee b/modNeural.cpp
+index d4135b6..ba73036 100644
+--- a/modNeural.cpp.esee
++++ b/modNeural.cpp
+@@ -8,6 +8,19 @@ Author V.C.Mohan
+ Aug 26, 2017, Aug 20, 2020
+ ********************************************************************************/
+
++#if defined(__unix__)
++static inline void linux_strcpy_s(char *dest, size_t destsz, const char *src){
++ strcpy(dest, src);
++}
++
++static inline void linux_strcat_s(char *dest, size_t destsz, const char *src){
++ strcat(dest, src);
++}
++
++#define strcpy_s linux_strcpy_s
++#define strcat_s linux_strcat_s
++#endif
++
+
+ typedef struct {
+