summaryrefslogtreecommitdiff
path: root/src/plugins.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-03-20 15:30:13 -0400
committerJonathan Bradley <jcb@pikum.xyz>2025-03-21 11:06:05 -0400
commite6e7f56c9bba3b2191583c4c1d0599370d1f00c7 (patch)
tree27476da693d9e75d920a698d57b74699f9f81c7a /src/plugins.hpp
parent9b39b4c8eab360e087423f06ecffb694a3b98b23 (diff)
pke: replace PkeArray with pk_arr_t
Diffstat (limited to 'src/plugins.hpp')
-rw-r--r--src/plugins.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/plugins.hpp b/src/plugins.hpp
index 697fbf1..360f692 100644
--- a/src/plugins.hpp
+++ b/src/plugins.hpp
@@ -1,12 +1,11 @@
#ifndef PKE_PLUGINS_HPP
#define PKE_PLUGINS_HPP
-#include "array.hpp"
-#include "dynamic-array.hpp"
+#include "pk.h"
#include "plugin-types.hpp"
-extern DynArray<PKEPluginInterface> LoadedPkePlugins;
-extern PkeArray<PkeCallback> pkePluginCallbacks;
+extern pk_arr_t<PKEPluginInterface> LoadedPkePlugins;
+extern pk_arr_t<PkeCallback> pkePluginCallbacks;
void PkePlugin_Load(const char *path);
PkeCallback *PkePlugin_FindSignature(const CallbackSignature &sig);