From dd0411ec78a4f8fa99aa32a2f2a90dba5d7bf572 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Tue, 10 Apr 2012 19:18:12 +0200 Subject: Automatic loading of plugins on Windows Signed-off-by: Martin Sustrik --- src/ctx.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ctx.hpp') 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 plugins_t; + plugins_t plugins; +#endif + // List of all filters plugged into the context. typedef std::map filters_t; filters_t filters; -- cgit v1.2.3