|
SDL 3.0
|
#include <SDL_storage.h>
Data Fields | |
| int(* | close )(void *userdata) |
| SDL_bool(* | ready )(void *userdata) |
| int(* | enumerate )(void *userdata, const char *path, SDL_EnumerateDirectoryCallback callback, void *callback_userdata) |
| int(* | info )(void *userdata, const char *path, SDL_PathInfo *info) |
| int(* | read_file )(void *userdata, const char *path, void *destination, Uint64 length) |
| int(* | write_file )(void *userdata, const char *path, const void *source, Uint64 length) |
| int(* | mkdir )(void *userdata, const char *path) |
| int(* | remove )(void *userdata, const char *path) |
| int(* | rename )(void *userdata, const char *oldpath, const char *newpath) |
| Uint64(* | space_remaining )(void *userdata) |
Definition at line 45 of file SDL_storage.h.
| int(* SDL_StorageInterface::close) (void *userdata) |
Definition at line 48 of file SDL_storage.h.
| int(* SDL_StorageInterface::enumerate) (void *userdata, const char *path, SDL_EnumerateDirectoryCallback callback, void *callback_userdata) |
Definition at line 54 of file SDL_storage.h.
| int(* SDL_StorageInterface::info) (void *userdata, const char *path, SDL_PathInfo *info) |
Definition at line 57 of file SDL_storage.h.
| int(* SDL_StorageInterface::mkdir) (void *userdata, const char *path) |
Definition at line 66 of file SDL_storage.h.
| int(* SDL_StorageInterface::read_file) (void *userdata, const char *path, void *destination, Uint64 length) |
Definition at line 60 of file SDL_storage.h.
| SDL_bool(* SDL_StorageInterface::ready) (void *userdata) |
Definition at line 51 of file SDL_storage.h.
| int(* SDL_StorageInterface::remove) (void *userdata, const char *path) |
Definition at line 69 of file SDL_storage.h.
| int(* SDL_StorageInterface::rename) (void *userdata, const char *oldpath, const char *newpath) |
Definition at line 72 of file SDL_storage.h.
| Uint64(* SDL_StorageInterface::space_remaining) (void *userdata) |
Definition at line 75 of file SDL_storage.h.
| int(* SDL_StorageInterface::write_file) (void *userdata, const char *path, const void *source, Uint64 length) |
Definition at line 63 of file SDL_storage.h.