summaryrefslogtreecommitdiff
path: root/src/ctx.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctx.hpp')
-rw-r--r--src/ctx.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ctx.hpp b/src/ctx.hpp
index 54144ad..75b36bd 100644
--- a/src/ctx.hpp
+++ b/src/ctx.hpp
@@ -169,6 +169,12 @@ namespace xs
// Synchronisation of access to context options.
mutex_t opt_sync;
+ // List of all dynamically loaded extension libraries.
+#if defined XS_HAVE_WINDOWS
+ typedef std::vector <HMODULE> plugins_t;
+ plugins_t plugins;
+#endif
+
// List of all filters plugged into the context.
typedef std::map <int, xs_filter_t*> filters_t;
filters_t filters;