diff options
author | nyamatongwe <devnull@localhost> | 2003-04-18 10:26:34 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-04-18 10:26:34 +0000 |
commit | 1805788277237ea895b016637b07a1027f5e28a7 (patch) | |
tree | 9b74bf864ac3d95df62e5a8d854b0f6e59848cc7 /include/Platform.h | |
parent | 3999fd3df65cf0123df03b9e3004c09a74928926 (diff) | |
download | scintilla-mirror-1805788277237ea895b016637b07a1027f5e28a7.tar.gz |
Changed Function* to simpler Function.
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/Platform.h b/include/Platform.h index 63c9514e8..342208ae0 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -435,13 +435,13 @@ public: class DynamicLibrary { public: virtual ~DynamicLibrary() {}; - + /// @return Pointer to function "name", or NULL on failure. - virtual Function *FindFunction(const char *name) = 0; - + 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); }; |