diff options
author | Neil <nyamatongwe@gmail.com> | 2021-03-17 08:53:21 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-03-17 08:53:21 +1100 |
commit | 7f5b292b12975f58ced1e445a41c4b21a350ab9b (patch) | |
tree | dcb82773b86346c863adb2d486bd1868c6618dca /src | |
parent | 99d16b51f142281f7d81cf3f704aff0e97bd1feb (diff) | |
download | scintilla-mirror-7f5b292b12975f58ced1e445a41c4b21a350ab9b.tar.gz |
Remove DynamicLibrary as loading lexers with SCI_LOADLEXERLIBRARY was removed
for Scintilla 5.
Diffstat (limited to 'src')
-rw-r--r-- | src/Platform.h | 17 |
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)) |