OS/2 Tinderbox break

PR_CALLBACK


git-svn-id: svn://10.0.0.236/trunk@76973 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkaply%us.ibm.com
2000-08-23 20:39:17 +00:00
parent 9fdc55e883
commit 0fa2281bcd
2 changed files with 4 additions and 4 deletions

View File

@@ -1113,7 +1113,7 @@ nsZipReaderCache::Init(PRUint32 cacheSize)
return mLock ? NS_OK : NS_ERROR_OUT_OF_MEMORY;
}
static PRBool
static PRBool PR_CALLBACK
DropZipReaderCache(nsHashKey *aKey, void *aData, void* closure)
{
nsJAR* zip = (nsJAR*)aData;
@@ -1187,7 +1187,7 @@ nsZipReaderCache::GetZip(nsIFile* zipFile, nsIZipReader* *result)
return rv;
}
static PRBool
static PRBool PR_CALLBACK
FindOldestZip(nsHashKey *aKey, void *aData, void* closure)
{
nsJAR** oldestPtr = (nsJAR**)closure;

View File

@@ -375,7 +375,7 @@ void TimesUp(nsITimer *aTimer, void *aClosure)
#endif //ENABLE_PAGE_CYCLER
PRUint32 nsBrowserInstance::gRefCnt = 0;
int ButtonShowHideCallback(const char* aPref, void* aClosure);
int PR_CALLBACK ButtonShowHideCallback(const char* aPref, void* aClosure);
static const char kShowToolbarElts[] = "browser.toolbars.showbutton";
//*****************************************************************************
@@ -2413,7 +2413,7 @@ NS_IMPL_NSGETMODULE("nsBrowserModule", components)
// Toolbar button pref callback
// =================================================================================
int ButtonShowHideCallback(const char* aPref, void* aClosure)
int PR_CALLBACK ButtonShowHideCallback(const char* aPref, void* aClosure)
{
nsresult rv;
NS_WITH_SERVICE(nsIPref, prefs, NS_PREF_PROGID, &rv);