Minor changes for NetWare.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@378 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-05-08 21:55:06 +00:00
parent 4875673228
commit 4e680e166d
2 changed files with 10 additions and 6 deletions

View File

@@ -2610,7 +2610,7 @@
#endif
#endif
FLMUINT64 FLMAPI f_getMaxFileSize( void);
FLMUINT FLMAPI f_getMaxFileSize( void);
/****************************************************************************
Desc: CPU release and sleep functions

View File

@@ -761,14 +761,16 @@ FLMINT FLMAPI f_strcmp(
/****************************************************************************
Desc:
****************************************************************************/
#ifdef FLM_WIN
FLMINT FLMAPI f_stricmp(
const char * pszStr1,
const char * pszStr2)
{
#ifdef FLM_WIN
return( _stricmp( pszStr1, pszStr2));
}
#else
return( stricmp( pszStr1, pszStr2));
#endif
}
/****************************************************************************
Desc:
@@ -784,15 +786,17 @@ FLMINT FLMAPI f_strncmp(
/****************************************************************************
Desc:
****************************************************************************/
#ifdef FLM_WIN
FLMINT FLMAPI f_strnicmp(
const char * pszStr1,
const char * pszStr2,
FLMSIZET uiLength)
{
#ifdef FLM_WIN
return( _strnicmp( pszStr1, pszStr2, uiLength));
}
#else
return( strnicmp( pszStr1, pszStr2, uiLength));
#endif
}
/****************************************************************************
Desc:
@@ -1069,7 +1073,7 @@ IF_ThreadMgr * f_getThreadMgrPtr( void)
/**********************************************************************
Desc:
**********************************************************************/
FLMUINT64 FLMAPI f_getMaxFileSize( void)
FLMUINT FLMAPI f_getMaxFileSize( void)
{
return( gv_uiMaxFileSize);
}