Results 1 - 16 of 16 results out of about 6837 pages. (3.24 seconds)
- SDL_RWFromFile . . . 5 matches
- ...
= SDL_RWFromFile =
Use this function to create a new [[SDL_RWops]] structure for reading from and/or writing to a named file.
<<TableOfContents()>>
== Syntax ==
{{{#!highlight ...
- SDL_RWops . . . 4 matches
- ...#Hidden Union|Remarks]]||
== Code Examples ==
{{{#!highlight cpp
SDL_RWops *io = SDL_RWFromFile("username.txt", "rb");
if (io != NULL) {
char name[256];
if (io->read(io, ...
- SDL_RWread . . . 3 matches
- ...]]() for more information.
== Code Examples ==
{{{#!highlight cpp
SDL_RWops *rw = SDL_RWFromFile("test.bin","r");
if (rw != NULL) {
extern Uint8 buf[256];
SDL_RWread(rw, b...
- SDL_RWwrite . . . 2 matches
- ...]]() for more information.
== Code Examples ==
{{{#!highlight cpp
SDL_RWops *rw = SDL_RWFromFile("hello.txt", "w");
if(rw != NULL) {
const char *str = "Hello World";
size_...
- SDL_RWseek . . . 2 matches
- ...r the seek or -1 on error.
== Code Examples ==
{{{#!highlight cpp
SDL_RWops *rw = SDL_RWFromFile("myfile.bin", "rb");
if (rw != NULL) {
/* Seek to 0 bytes from the end of the ...
- SDL_RWclose . . . 2 matches
- ...formation.
== Code Examples ==
{{{#!highlight cpp
Uint8 buf[256];
SDL_RWops *rw = SDL_RWFromFile("test.bin", "r");
if (rw != NULL) {
SDL_RWread(rw, buf, sizeof (buf), 1);
...
- SDL_RWtell . . . 1 match
- ...velopment.
== Related Functions ==
.[[SDL_RWclose]]
.[[SDL_RWFromConstMem]]
.[[SDL_RWFromFile]]
.[[SDL_RWFromFP]]
.[[SDL_RWFromMem]]
.[[SDL_RWread]]
.[[SDL_RWseek]]
.[[SDL...
- SDL_RWFromMem . . . 1 match
- ...y instead.
== Related Functions ==
.[[SDL_RWclose]]
.[[SDL_RWFromConstMem]]
.[[SDL_RWFromFile]]
.[[SDL_RWFromFP]]
.[[SDL_RWFromMem]]
.[[SDL_RWread]]
.[[SDL_RWseek]]
.[[SDL...
- SDL_RWFromFP . . . 1 match
- ...s stdio.h.
== Related Functions ==
.[[SDL_RWclose]]
.[[SDL_RWFromConstMem]]
.[[SDL_RWFromFile]]
.[[SDL_RWFromMem]]
.[[SDL_RWread]]
.[[SDL_RWseek]]
.[[SDL_RWtell]]
.[[SDL_R...
- SDL_RWFromConstMem . . . 1 match
- ...y instead.
== Related Functions ==
.[[SDL_RWclose]]
.[[SDL_RWFromConstMem]]
.[[SDL_RWFromFile]]
.[[SDL_RWFromFP]]
.[[SDL_RWFromMem]]
.[[SDL_RWread]]
.[[SDL_RWseek]]
.[[SDL...
- SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION . . . 1 match
- ...SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION]].
If both hints were set then [[SDL_RWFromFile]]() will look into expansion files after a given relative path was not found in th...
- SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION . . . 1 match
- ...DL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION]].
If both hints were set then [[SDL_RWFromFile]]() will look into expansion files after a given relative path was not found in th...
- SDL_FreeRW . . . 1 match
- ...e a common data source, you should use the built-in implementations in SDL, like [[SDL_RWFromFile]]() or [[SDL_RWFromMem]](), etc, and call the '''close''' method on those SDL_RWop...
- SDL_AllocRW . . . 1 match
- ...e a common data source, you should use the built-in implementations in SDL, like [[SDL_RWFromFile]]() or [[SDL_RWFromMem]](), etc.
You must free the returned pointer with [[SDL_Fr...
- CategoryIO . . . 1 match
- ...##master-page:CategoryTemplate
##master-date:Unknown-Date
#format wiki
#language en
= File I/O Abstraction =
'''Include File(s):''' [[http://hg.libsdl.org/SDL/file/default/inclu...
- CategoryAPI . . . 1 match
- ...##master-page:CategoryTemplate
##master-date:Unknown-Date
#format wiki
#language en
= SDL 2.0 API by Name =
<<TableOfContents()>>
== Hints ==
<<FullSearchCached(category:Catego...
