From 5f4928ccf5dabaa8e9df1061f7a8cc4ff1b97603 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Fri, 18 Apr 2003 10:26:34 +0000 Subject: Changed Function* to simpler Function. --- win32/PlatWin.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win32') diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index c92b274cb..472c8b9a2 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -1302,9 +1302,9 @@ public: } // Use GetProcAddress to get a pointer to the relevant function. - virtual Function *FindFunction(const char *name) { + virtual Function FindFunction(const char *name) { if (h != NULL) { - return static_cast( + return static_cast( (void *)(::GetProcAddress(h, name))); } else return NULL; -- cgit v1.2.3