From a042fb01d95088011529e03c1550023532428b16 Mon Sep 17 00:00:00 2001 From: "beard%netscape.com" Date: Tue, 1 Dec 1998 01:02:32 +0000 Subject: [PATCH] Trying to fix build bustage. git-svn-id: svn://10.0.0.236/trunk@15482 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/modules/libimg/src/xpcompat.cpp | 4 ++-- mozilla/modules/libimg/src/xpcompat.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/modules/libimg/src/xpcompat.cpp b/mozilla/modules/libimg/src/xpcompat.cpp index 24502e86f94..865159bd763 100644 --- a/mozilla/modules/libimg/src/xpcompat.cpp +++ b/mozilla/modules/libimg/src/xpcompat.cpp @@ -812,14 +812,14 @@ static void wfe_ProcessTimeouts(DWORD dwNow) dwSyncHack = 0; } #else -NS_EXPORT void * +NS_EXPORT_(void *) FE_SetTimeout(TimeoutCallbackFunction func, void * closure, uint32 msecs) { return il_ss->SetTimeout((ilTimeoutCallbackFunction)func, closure, msecs); } -NS_EXPORT void +NS_EXPORT(void) FE_ClearTimeout(void *timer_id) { il_ss->ClearTimeout(timer_id); diff --git a/mozilla/modules/libimg/src/xpcompat.h b/mozilla/modules/libimg/src/xpcompat.h index 820398275d1..939919bb48d 100644 --- a/mozilla/modules/libimg/src/xpcompat.h +++ b/mozilla/modules/libimg/src/xpcompat.h @@ -149,10 +149,10 @@ extern char * NET_BACat (char **dest, size_t dest_length, const char *src, size extern char * NET_SACopy (char **dest, const char *src); extern char * NET_SACat (char **dest, const char *src); -extern void * +extern NS_EXPORT_(void *) FE_SetTimeout(TimeoutCallbackFunction func, void * closure, uint32 msecs); -extern void +extern NS_EXPORT(void) FE_ClearTimeout(void *timer_id); PR_END_EXTERN_C