#include <stdio.h>#include "physfsrwops.h"Include dependency graph for physfsrwops.cpp:

Go to the source code of this file.
Functions | |
| static int | physfsrwops_seek (SDL_RWops *rw, int offset, int whence) |
| static int | physfsrwops_read (SDL_RWops *rw, void *ptr, int size, int maxnum) |
| static int | physfsrwops_write (SDL_RWops *rw, const void *ptr, int size, int num) |
| static int | physfsrwops_close (SDL_RWops *rw) |
| static SDL_RWops * | create_rwops (PHYSFS_file *handle) |
| SDL_RWops * | PHYSFSRWOPS_makeRWops (PHYSFS_file *handle) |
| Make a SDL_RWops from an existing PhysicsFS file handle. | |
| SDL_RWops * | PHYSFSRWOPS_openRead (const char *fname) |
| Open a platform-independent filename for reading, and make it accessible via an SDL_RWops structure. | |
| SDL_RWops * | PHYSFSRWOPS_openWrite (const char *fname) |
| Open a platform-independent filename for writing, and make it accessible via an SDL_RWops structure. | |
| SDL_RWops * | PHYSFSRWOPS_openAppend (const char *fname) |
| Open a platform-independent filename for appending, and make it accessible via an SDL_RWops structure. | |
|
|
Definition at line 122 of file physfsrwops.cpp. References physfsrwops_close(), physfsrwops_read(), physfsrwops_seek(), and physfsrwops_write(). Referenced by PHYSFSRWOPS_makeRWops(), PHYSFSRWOPS_openAppend(), PHYSFSRWOPS_openRead(), and PHYSFSRWOPS_openWrite(). |
|
|
Definition at line 110 of file physfsrwops.cpp. Referenced by create_rwops(). |
|
|
Make a SDL_RWops from an existing PhysicsFS file handle. You should dispose of any references to the handle after successful creation of the RWops. The actual PhysicsFS handle will be destroyed when the RWops is closed.
Definition at line 142 of file physfsrwops.cpp. References create_rwops(). |
|
|
Open a platform-independent filename for appending, and make it accessible via an SDL_RWops structure. The file will be closed in PhysicsFS when the RWops is closed. PhysicsFS should be configured to your liking before opening files through this method.
Definition at line 163 of file physfsrwops.cpp. References create_rwops(). Referenced by PG_FileArchive::OpenFileRWops(). |
|
|
Open a platform-independent filename for reading, and make it accessible via an SDL_RWops structure. The file will be closed in PhysicsFS when the RWops is closed. PhysicsFS should be configured to your liking before opening files through this method.
Definition at line 153 of file physfsrwops.cpp. References create_rwops(). Referenced by PG_FileArchive::OpenFileRWops(). |
|
|
Open a platform-independent filename for writing, and make it accessible via an SDL_RWops structure. The file will be closed in PhysicsFS when the RWops is closed. PhysicsFS should be configured to your liking before opening files through this method.
Definition at line 158 of file physfsrwops.cpp. References create_rwops(). Referenced by PG_FileArchive::OpenFileRWops(). |
|
||||||||||||||||||||
|
Definition at line 88 of file physfsrwops.cpp. Referenced by create_rwops(). |
|
||||||||||||||||
|
Definition at line 25 of file physfsrwops.cpp. Referenced by create_rwops(). |
|
||||||||||||||||||||
|
Definition at line 100 of file physfsrwops.cpp. Referenced by create_rwops(). |
1.4.2