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 44 of file SDL_storage.h.
int(* SDL_StorageInterface::close) (void *userdata) |
Definition at line 47 of file SDL_storage.h.
int(* SDL_StorageInterface::enumerate) (void *userdata, const char *path, SDL_EnumerateDirectoryCallback callback, void *callback_userdata) |
Definition at line 53 of file SDL_storage.h.
int(* SDL_StorageInterface::info) (void *userdata, const char *path, SDL_PathInfo *info) |
Definition at line 56 of file SDL_storage.h.
int(* SDL_StorageInterface::mkdir) (void *userdata, const char *path) |
Definition at line 65 of file SDL_storage.h.
int(* SDL_StorageInterface::read_file) (void *userdata, const char *path, void *destination, Uint64 length) |
Definition at line 59 of file SDL_storage.h.
SDL_bool(* SDL_StorageInterface::ready) (void *userdata) |
Definition at line 50 of file SDL_storage.h.
int(* SDL_StorageInterface::remove) (void *userdata, const char *path) |
Definition at line 68 of file SDL_storage.h.
int(* SDL_StorageInterface::rename) (void *userdata, const char *oldpath, const char *newpath) |
Definition at line 71 of file SDL_storage.h.
Uint64(* SDL_StorageInterface::space_remaining) (void *userdata) |
Definition at line 74 of file SDL_storage.h.
int(* SDL_StorageInterface::write_file) (void *userdata, const char *path, const void *source, Uint64 length) |
Definition at line 62 of file SDL_storage.h.