physfsrwops.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * This code provides a glue layer between PhysicsFS and Simple Directmedia
  3. * Layer's (SDL) RWops i/o abstraction.
  4. *
  5. * License: this code is public domain. I make no warranty that it is useful,
  6. * correct, harmless, or environmentally safe.
  7. *
  8. * This particular file may be used however you like, including copying it
  9. * verbatim into a closed-source project, exploiting it commercially, and
  10. * removing any trace of my name from the source (although I hope you won't
  11. * do that). I welcome enhancements and corrections to this file, but I do
  12. * not require you to send me patches if you make changes.
  13. *
  14. * Unless otherwise stated, the rest of PhysicsFS falls under the GNU Lesser
  15. * General Public License: http://www.gnu.org/licenses/lgpl.txt
  16. *
  17. * SDL falls under the LGPL, too. You can get SDL at http://www.libsdl.org/
  18. *
  19. * This file was written by Ryan C. Gordon. (icculus@clutteredmind.org).
  20. */
  21. #ifndef _INCLUDE_PHYSFSRWOPS_H_
  22. #define _INCLUDE_PHYSFSRWOPS_H_
  23. #include "physfs.h"
  24. #include "SDL.h"
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. #if (defined _MSC_VER)
  29. #define __EXPORT__ __declspec(dllexport)
  30. #else
  31. #define __EXPORT__
  32. #endif
  33. /**
  34. * Open a platform-independent filename for reading, and make it accessible
  35. * via an SDL_RWops structure. The file will be closed in PhysicsFS when the
  36. * RWops is closed. PhysicsFS should be configured to your liking before
  37. * opening files through this method.
  38. *
  39. * @param filename File to open in platform-independent notation.
  40. * @return A valid SDL_RWops structure on success, NULL on error. Specifics
  41. * of the error can be gleaned from PHYSFS_getLastError().
  42. */
  43. __EXPORT__ SDL_RWops *PHYSFSRWOPS_openRead(const char *fname);
  44. /**
  45. * Open a platform-independent filename for writing, and make it accessible
  46. * via an SDL_RWops structure. The file will be closed in PhysicsFS when the
  47. * RWops is closed. PhysicsFS should be configured to your liking before
  48. * opening files through this method.
  49. *
  50. * @param filename File to open in platform-independent notation.
  51. * @return A valid SDL_RWops structure on success, NULL on error. Specifics
  52. * of the error can be gleaned from PHYSFS_getLastError().
  53. */
  54. __EXPORT__ SDL_RWops *PHYSFSRWOPS_openWrite(const char *fname);
  55. /**
  56. * Open a platform-independent filename for appending, and make it accessible
  57. * via an SDL_RWops structure. The file will be closed in PhysicsFS when the
  58. * RWops is closed. PhysicsFS should be configured to your liking before
  59. * opening files through this method.
  60. *
  61. * @param filename File to open in platform-independent notation.
  62. * @return A valid SDL_RWops structure on success, NULL on error. Specifics
  63. * of the error can be gleaned from PHYSFS_getLastError().
  64. */
  65. __EXPORT__ SDL_RWops *PHYSFSRWOPS_openAppend(const char *fname);
  66. /**
  67. * Make a SDL_RWops from an existing PhysicsFS file handle. You should
  68. * dispose of any references to the handle after successful creation of
  69. * the RWops. The actual PhysicsFS handle will be destroyed when the
  70. * RWops is closed.
  71. *
  72. * @param handle a valid PhysicsFS file handle.
  73. * @return A valid SDL_RWops structure on success, NULL on error. Specifics
  74. * of the error can be gleaned from PHYSFS_getLastError().
  75. */
  76. __EXPORT__ SDL_RWops *PHYSFSRWOPS_makeRWops(PHYSFS_file *handle);
  77. #ifdef __cplusplus
  78. }
  79. #endif
  80. #endif /* include-once blocker */
  81. /* end of physfsrwops.h ... */