Changeset 589 in vbox for trunk/src/libs/xpcom18a4/xpcom/MoreFiles
- Timestamp:
- Feb 4, 2007 12:25:57 PM (18 years ago)
- Location:
- trunk/src/libs/xpcom18a4/xpcom/MoreFiles
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/MoreFiles/FSCopyObject.c
r1 r589 44 44 Copyright © 2002 Apple Computer, Inc., All Rights Reserved 45 45 */ 46 47 // Modified 2006-01-23 - added this comment. 46 48 47 49 #include "FSCopyObject.h" -
trunk/src/libs/xpcom18a4/xpcom/MoreFiles/FSCopyObject.h
r1 r589 42 42 */ 43 43 44 // Modified 2006-01-23 - added this comment. 44 45 45 46 #ifndef __FSCOPYOBJECT_H__ -
trunk/src/libs/xpcom18a4/xpcom/MoreFiles/MoreFilesX.c
r1 r589 69 69 <1> 1/25/02 JL MoreFilesX 1.0 70 70 */ 71 72 // Modified 2006-01-23 - added this comment. 71 73 72 74 #if defined(__MACH__) … … 2125 2127 /*****************************************************************************/ 2126 2128 2127 OSErr 2128 FSLockRange( 2129 /* Renamed from FSLockRange to MFX_FSLockRange to avoid a conflict with 2130 * the FSLockRange function present in the system library since Mac OS X 2131 * 10.4. */ 2132 2133 OSErr 2134 MFX_FSLockRange( 2129 2135 SInt16 refNum, 2130 2136 SInt32 rangeLength, … … 2148 2154 /*****************************************************************************/ 2149 2155 2150 OSErr 2151 FSUnlockRange( 2156 /* Renamed from FSUnlockRange to MFX_FSUnlockRange to avoid a conflict with 2157 * the FSUnlockRange function present in the system library since Mac OS X 2158 * 10.4. */ 2159 2160 OSErr 2161 MFX_FSUnlockRange( 2152 2162 SInt16 refNum, 2153 2163 SInt32 rangeLength, … … 2307 2317 /*****************************************************************************/ 2308 2318 2319 // This function exists in Mac OS X 10.5, we cannot re-define it here. 2320 // We don't use this function, so just don't compile it. 2321 #if 0 2309 2322 OSErr 2310 2323 FSVolumeMount( … … 2330 2343 return ( result ); 2331 2344 } 2345 #endif 2332 2346 2333 2347 /*****************************************************************************/ -
trunk/src/libs/xpcom18a4/xpcom/MoreFiles/MoreFilesX.h
r1 r589 84 84 do less work. 85 85 */ 86 87 // Modified 2006-01-23 - added this comment. 86 88 87 89 #ifndef __MOREFILESX__ … … 1333 1335 /*****************************************************************************/ 1334 1336 1335 #pragma mark FSLockRange 1336 1337 OSErr 1338 FSLockRange( 1337 #pragma mark MFX_FSLockRange 1338 /* Renamed from FSLockRange to MFX_FSLockRange to avoid a conflict with 1339 * the FSLockRange function present in the system library since Mac OS X 1340 * 10.4. */ 1341 1342 OSErr 1343 MFX_FSLockRange( 1339 1344 SInt16 refNum, 1340 1345 SInt32 rangeLength, … … 1356 1361 /*****************************************************************************/ 1357 1362 1358 #pragma mark FSUnlockRange 1359 1360 OSErr 1361 FSUnlockRange( 1363 #pragma mark MFX_FSUnlockRange 1364 /* Renamed from FSUnlockRange to MFX_FSUnlockRange to avoid a conflict with 1365 * the FSUnlockRange function present in the system library since Mac OS X 1366 * 10.4. */ 1367 1368 OSErr 1369 MFX_FSUnlockRange( 1362 1370 SInt16 refNum, 1363 1371 SInt32 rangeLength, … … 1483 1491 #pragma mark FSVolumeMount 1484 1492 1493 // This function exists in Mac OS X 10.5, we cannot re-define it here. 1494 // We don't use this function, so just don't compile it. 1495 #if 0 1485 1496 OSErr 1486 1497 FSVolumeMount( 1487 1498 const void *volMountInfo, 1488 1499 FSVolumeRefNum *volRefNum); 1500 #endif 1489 1501 1490 1502 /*
Note:
See TracChangeset
for help on using the changeset viewer.