]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/moduledefs.h
Remove the Kiwi links from the readme.
[user/henk/code/inspircd.git] / include / moduledefs.h
index a2bac63cb714db6650f56471fb82ec979c289d5c..67aa062bfdf69e5d888db38d1c07abfd7c0e4d6f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
- *   Copyright (C) 2020 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2020-2021 Sadie Powell <sadie@witchery.services>
  *
  * This file is part of InspIRCd.  InspIRCd is free software: you can
  * redistribute it and/or modify it under the terms of the GNU General Public
@@ -22,7 +22,7 @@
 class Module;
 
 /** The version of the InspIRCd ABI which is presently in use. */
-#define MODULE_ABI 3010
+#define MODULE_ABI 3015UL
 
 /** 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; }