From 0c5b85df8c5ae969831551ddefb8e07cb6da5f08 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 3 Feb 2020 21:43:15 +0000 Subject: Include the ABI version with the incompatible module error message. --- include/moduledefs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/moduledefs.h b/include/moduledefs.h index a2bac63cb..4b917bf26 100644 --- a/include/moduledefs.h +++ b/include/moduledefs.h @@ -22,7 +22,7 @@ class Module; /** The version of the InspIRCd ABI which is presently in use. */ -#define MODULE_ABI 3010 +#define MODULE_ABI 3010UL /** Stringifies the value of a symbol. */ #define MODULE_STRINGIFY_SYM1(DEF) MODULE_STRINGIFY_SYM2(DEF) @@ -42,6 +42,6 @@ class Module; /** Defines the interface that a shared library must expose in order to be a module. */ #define MODULE_INIT(klass) \ - extern "C" DllExport const uint32_t MODULE_SYM_ABI = MODULE_ABI; \ + extern "C" DllExport const unsigned long MODULE_SYM_ABI = MODULE_ABI; \ extern "C" DllExport const char MODULE_SYM_VERSION[] = INSPIRCD_VERSION; \ extern "C" DllExport Module* MODULE_SYM_INIT() { return new klass; } -- cgit v1.2.3