aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Platform.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-04-18 10:26:34 +0000
committernyamatongwe <unknown>2003-04-18 10:26:34 +0000
commit5f4928ccf5dabaa8e9df1061f7a8cc4ff1b97603 (patch)
tree9b74bf864ac3d95df62e5a8d854b0f6e59848cc7 /include/Platform.h
parent3b031e3e5ec28064ce2bb4e67e0d9e48a40ee594 (diff)
downloadscintilla-mirror-5f4928ccf5dabaa8e9df1061f7a8cc4ff1b97603.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);
};