aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Platform.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-03-17 08:53:21 +1100
committerNeil <nyamatongwe@gmail.com>2021-03-17 08:53:21 +1100
commit7f5b292b12975f58ced1e445a41c4b21a350ab9b (patch)
treedcb82773b86346c863adb2d486bd1868c6618dca /src/Platform.h
parent99d16b51f142281f7d81cf3f704aff0e97bd1feb (diff)
downloadscintilla-mirror-7f5b292b12975f58ced1e445a41c4b21a350ab9b.tar.gz
Remove DynamicLibrary as loading lexers with SCI_LOADLEXERLIBRARY was removed
for Scintilla 5.
Diffstat (limited to 'src/Platform.h')
-rw-r--r--src/Platform.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/Platform.h b/src/Platform.h
index 346e057b1..19898a1c4 100644
--- a/src/Platform.h
+++ b/src/Platform.h
@@ -514,23 +514,6 @@ public:
void Show(Point pt, Window &w);
};
-/**
- * Dynamic Library (DLL/SO/...) loading
- */
-class DynamicLibrary {
-public:
- virtual ~DynamicLibrary() = default;
-
- /// @return Pointer to function "name", or NULL on failure.
- virtual Function FindFunction(const char *name) = 0;
-
- /// @return true if the library was loaded successfully.
- virtual bool IsValid() = 0;
-
- /// @return An instance of a DynamicLibrary subclass with "modulePath" loaded.
- static DynamicLibrary *Load(const char *modulePath);
-};
-
#if defined(__clang__)
# if __has_feature(attribute_analyzer_noreturn)
# define CLANG_ANALYZER_NORETURN __attribute__((analyzer_noreturn))