summaryrefslogtreecommitdiffstats
path: root/crypto/dso/dso_win32.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2006-01-02 08:59:20 +0000
committerAndy Polyakov <appro@openssl.org>2006-01-02 08:59:20 +0000
commitc6cb42e4fba2457c72e17aab2fbe01f411edf6fa (patch)
tree874e451b3f7ebfaedf13b84e622d8b8f40abb0bf /crypto/dso/dso_win32.c
parent2d43a89488151c39f66d45003ccb4310646516ae (diff)
"Relax" prototype and rename DSO_global_lookup_func to DSO_global_lookup.
Diffstat (limited to 'crypto/dso/dso_win32.c')
-rw-r--r--crypto/dso/dso_win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/dso/dso_win32.c b/crypto/dso/dso_win32.c
index 94fe473377..a9c82726bd 100644
--- a/crypto/dso/dso_win32.c
+++ b/crypto/dso/dso_win32.c
@@ -129,7 +129,7 @@ static char *win32_name_converter(DSO *dso, const char *filename);
static char *win32_merger(DSO *dso, const char *filespec1,
const char *filespec2);
static int win32_pathbyaddr(void *addr,char *path,int sz);
-static DSO_FUNC_TYPE win32_globallookup(const char *name);
+static void *win32_globallookup(const char *name);
static const char *openssl_strnchr(const char *string, int c, size_t len);
@@ -773,7 +773,7 @@ static int win32_pathbyaddr(void *addr,char *path,int sz)
return 0;
}
-static DSO_FUNC_TYPE win32_globallookup(const char *name)
+static void *win32_globallookup(const char *name)
{
HMODULE dll;
HANDLE hModuleSnap = INVALID_HANDLE_VALUE;