I'm thinking about using PhysicsFS in my game engine project, but I'd like to first make sure it's entirely platform-independent. That's because I'd like to port my engine to some rather obscure platforms after I'm done with the Windows code (Wii Homebrew, for example).
相关问题
- Sorting 3 numbers without branching [closed]
- Multiple sockets for clients to connect to
- How to compile C++ code in GDB?
- Why does const allow implicit conversion of refere
- thread_local variables initialization
In accordance with the official specs the developers provide on their site it:
And even
So the answer is Yes, it is platform-independent.
Update from April, 20 2011
Following @rubenvb advice, I'd better define it as a cross-platform library. That's because PhysicsFS library utilizes
#ifdefs
and provides particular implementations for Windows, BeOS / Haiku, Mac OS X, OS/2, PocketPC, POSIX and UNIX platforms.