]> git.eshelyaron.com Git - sweep.git/commitdiff
PORT: MSVC V9.1.15 V9.1.16 V9.1.17 V9.1.18
authorJan Wielemaker <jan@swi-prolog.org>
Fri, 1 Sep 2023 15:57:19 +0000 (17:57 +0200)
committerJan Wielemaker <J.Wielemaker@vu.nl>
Fri, 1 Sep 2023 16:09:14 +0000 (18:09 +0200)
Need to get DLL linkage correct.  This also requires a change in
SWI-Prolog.h

emacs-module.h
sweep.c

index a21ba6b502af8ee1488ec666105d685b2e8b26ad..202aed5041c8060fccbc5a9fc1037abc134ab0f1 100644 (file)
@@ -748,7 +748,11 @@ struct emacs_env_28
 };
 
 /* Every module should define a function as follows.  */
-extern int emacs_module_init (struct emacs_runtime *runtime)
+#ifndef EXPORT
+#define EXPORT extern
+#endif
+
+EXPORT int emacs_module_init (struct emacs_runtime *runtime)
   EMACS_NOEXCEPT
   EMACS_ATTRIBUTE_NONNULL (1);
 
diff --git a/sweep.c b/sweep.c
index 3e8f1565bab9fca660d26d6b70f34f76a14f3f5f..d64249830f869bd41e4b5ee5375852b8328830d0 100644 (file)
--- a/sweep.c
+++ b/sweep.c
@@ -30,7 +30,6 @@
     POSSIBILITY OF SUCH DAMAGE.
 */
 
-#include <emacs-module.h>
 #include <SWI-Prolog.h>
 #include <SWI-Stream.h>
 #include <stdlib.h>
 #define EXPORT
 #endif
 
+#include <emacs-module.h>
+
 EXPORT int plugin_is_GPL_compatible;
+int plugin_is_GPL_compatible;
 
 struct sweep_env {
   term_t      output_term;
@@ -586,7 +588,7 @@ sweep_initialize(emacs_env *env, ptrdiff_t nargs, emacs_value *args, void *data)
   PL_register_foreign("sweep_funcall", 2, sweep_funcall0, 0);
   PL_register_foreign("sweep_fd_open", 2, sweep_fd_open,  0);
 
-  r = PL_initialise(nargs, argv);
+  r = PL_initialise((int)nargs, argv);
 
   sweep_thread_id = PL_thread_self();