first part of Mac OS X 10.4 "Tiger" build patch. Patch by Mark Mentovai. r=josh r=pinkerton r=cls sr=bryner a=brendan

git-svn-id: svn://10.0.0.236/trunk@173952 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
joshmoz%gmail.com 2005-06-01 18:45:31 +00:00
parent 6857a9e298
commit 1e104d5852
2 changed files with 20 additions and 6 deletions

View File

@ -2124,8 +2124,12 @@ BadParameter:
/*****************************************************************************/
/* Renamed from FSLockRange to MFX_FSLockRange to avoid a conflict with
* the FSLockRange function present in the system library since Mac OS X
* 10.4. */
OSErr
FSLockRange(
MFX_FSLockRange(
SInt16 refNum,
SInt32 rangeLength,
SInt32 rangeStart)
@ -2147,8 +2151,12 @@ PBLockRangeSync:
/*****************************************************************************/
/* Renamed from FSUnlockRange to MFX_FSUnlockRange to avoid a conflict with
* the FSUnlockRange function present in the system library since Mac OS X
* 10.4. */
OSErr
FSUnlockRange(
MFX_FSUnlockRange(
SInt16 refNum,
SInt32 rangeLength,
SInt32 rangeStart)

View File

@ -1332,10 +1332,13 @@ FSExchangeObjectsCompat(
/*****************************************************************************/
#pragma mark FSLockRange
#pragma mark MFX_FSLockRange
/* Renamed from FSLockRange to MFX_FSLockRange to avoid a conflict with
* the FSLockRange function present in the system library since Mac OS X
* 10.4. */
OSErr
FSLockRange(
MFX_FSLockRange(
SInt16 refNum,
SInt32 rangeLength,
SInt32 rangeStart);
@ -1355,10 +1358,13 @@ FSLockRange(
/*****************************************************************************/
#pragma mark FSUnlockRange
#pragma mark MFX_FSUnlockRange
/* Renamed from FSUnlockRange to MFX_FSUnlockRange to avoid a conflict with
* the FSUnlockRange function present in the system library since Mac OS X
* 10.4. */
OSErr
FSUnlockRange(
MFX_FSUnlockRange(
SInt16 refNum,
SInt32 rangeLength,
SInt32 rangeStart);