Fixed some comments.

This commit is contained in:
Ryan C. Gordon 2007-03-11 10:12:39 +00:00
parent 53bbe35ddd
commit e029cb54e5
3 changed files with 14 additions and 14 deletions

View File

@ -1,5 +1,5 @@
/* /*
* MacOS Classic support routines for PhysicsFS. * Mac OS classic support routines for PhysicsFS.
* *
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
@ -876,25 +876,25 @@ int __PHYSFS_platformDelete(const char *path)
void *__PHYSFS_platformCreateMutex(void) void *__PHYSFS_platformCreateMutex(void)
{ {
return((void *) 0x0001); /* no mutexes on MacOS Classic. */ return((void *) 0x0001); /* no mutexes on Mac OS classic. */
} /* __PHYSFS_platformCreateMutex */ } /* __PHYSFS_platformCreateMutex */
void __PHYSFS_platformDestroyMutex(void *mutex) void __PHYSFS_platformDestroyMutex(void *mutex)
{ {
/* no mutexes on MacOS Classic. */ /* no mutexes on Mac OS classic. */
} /* __PHYSFS_platformDestroyMutex */ } /* __PHYSFS_platformDestroyMutex */
int __PHYSFS_platformGrabMutex(void *mutex) int __PHYSFS_platformGrabMutex(void *mutex)
{ {
return(1); /* no mutexes on MacOS Classic. */ return(1); /* no mutexes on Mac OS classic. */
} /* __PHYSFS_platformGrabMutex */ } /* __PHYSFS_platformGrabMutex */
void __PHYSFS_platformReleaseMutex(void *mutex) void __PHYSFS_platformReleaseMutex(void *mutex)
{ {
/* no mutexes on MacOS Classic. */ /* no mutexes on Mac OS classic. */
} /* __PHYSFS_platformReleaseMutex */ } /* __PHYSFS_platformReleaseMutex */

View File

@ -1,5 +1,5 @@
/* /*
* Skeleton platform-dependent support routines for PhysicsFS. * PocketPC support routines for PhysicsFS.
* *
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *

View File

@ -1,5 +1,5 @@
/* /*
* Win32 support routines for PhysicsFS. * Windows support routines for PhysicsFS.
* *
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *