aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/transports/dlltransport.h
diff options
context:
space:
mode:
authorDmytro Ivanov <[email protected]>2025-04-23 10:54:22 +0200
committerGitHub Enterprise <[email protected]>2025-04-23 10:54:22 +0200
commit199553c86444dcd9c4cff91165938dbd9a5b4bbb (patch)
tree017231616e164717b112dae1faab05f1d8573f10 /src/zenhttp/transports/dlltransport.h
parentmake sure to call MakeSafeAbsolutePathÍnPlace where appropriate (#363) (diff)
downloadzen-199553c86444dcd9c4cff91165938dbd9a5b4bbb.tar.xz
zen-199553c86444dcd9c4cff91165938dbd9a5b4bbb.zip
Make plugin loading errors non fatal (#364)
make plugin loading errors non fatal
Diffstat (limited to 'src/zenhttp/transports/dlltransport.h')
-rw-r--r--src/zenhttp/transports/dlltransport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenhttp/transports/dlltransport.h b/src/zenhttp/transports/dlltransport.h
index 9346a10ce..c49f888da 100644
--- a/src/zenhttp/transports/dlltransport.h
+++ b/src/zenhttp/transports/dlltransport.h
@@ -15,7 +15,7 @@ namespace zen {
class DllTransportPlugin : public TransportPlugin
{
public:
- virtual void LoadDll(std::string_view Name) = 0;
+ virtual bool LoadDll(std::string_view Name) = 0;
virtual void ConfigureDll(std::string_view Name, const char* OptionTag, const char* OptionValue) = 0;
};