aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Platform.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-04-18 10:26:34 +0000
committernyamatongwe <devnull@localhost>2003-04-18 10:26:34 +0000
commit1805788277237ea895b016637b07a1027f5e28a7 (patch)
tree9b74bf864ac3d95df62e5a8d854b0f6e59848cc7 /include/Platform.h
parent3999fd3df65cf0123df03b9e3004c09a74928926 (diff)
downloadscintilla-mirror-1805788277237ea895b016637b07a1027f5e28a7.tar.gz
Changed Function* to simpler Function.
Diffstat (limited to 'include/Platform.h')
-rw-r--r--include/Platform.h8
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);
};