summaryrefslogtreecommitdiffstats
path: root/xbmc/cores/DllLoader/SoLoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/cores/DllLoader/SoLoader.h')
-rw-r--r--xbmc/cores/DllLoader/SoLoader.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/xbmc/cores/DllLoader/SoLoader.h b/xbmc/cores/DllLoader/SoLoader.h
new file mode 100644
index 0000000..4adc7e9
--- /dev/null
+++ b/xbmc/cores/DllLoader/SoLoader.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2005-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#pragma once
+
+#include <stdio.h>
+#ifdef TARGET_POSIX
+#include "PlatformDefs.h"
+#endif
+#include "DllLoader.h"
+
+class SoLoader : public LibraryLoader
+{
+public:
+ SoLoader(const std::string &so, bool bGlobal = false);
+ ~SoLoader() override;
+
+ bool Load() override;
+ void Unload() override;
+
+ int ResolveExport(const char* symbol, void** ptr, bool logging = true) override;
+ bool IsSystemDll() override;
+ HMODULE GetHModule() override;
+ bool HasSymbols() override;
+
+private:
+ void* m_soHandle;
+ bool m_bGlobal;
+ bool m_bLoaded;
+};