Wiki Page Content

Results 1 - 16 of 16 results out of about 6839 pages. (2.60 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 ...

3.0k - rev: 15 (current) last modified: 2016-05-12 20:32:05

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, ...

6.1k - rev: 11 (current) last modified: 2015-04-26 19:23:07

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...

2.8k - rev: 15 (current) last modified: 2015-09-17 21:55:16

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_...

1.7k - rev: 10 (current) last modified: 2015-06-20 20:03:24

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 ...

1.7k - rev: 24 (current) last modified: 2015-06-20 20:01:11

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); ...

1.4k - rev: 13 (current) last modified: 2015-06-20 19:55:24

SDL_RWtell . . . 1 match
...velopment. == Related Functions == .[[SDL_RWclose]] .[[SDL_RWFromConstMem]] .[[SDL_RWFromFile]] .[[SDL_RWFromFP]] .[[SDL_RWFromMem]] .[[SDL_RWread]] .[[SDL_RWseek]] .[[SDL...

1.1k - rev: 15 (current) last modified: 2015-06-20 19:57:52

SDL_RWFromMem . . . 1 match
...y instead. == Related Functions == .[[SDL_RWclose]] .[[SDL_RWFromConstMem]] .[[SDL_RWFromFile]] .[[SDL_RWFromFP]] .[[SDL_RWFromMem]] .[[SDL_RWread]] .[[SDL_RWseek]] .[[SDL...

1.4k - rev: 15 (current) last modified: 2015-06-20 20:00:06

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...

1.5k - rev: 18 (current) last modified: 2015-06-20 19:58:46

SDL_RWFromConstMem . . . 1 match
...y instead. == Related Functions == .[[SDL_RWclose]] .[[SDL_RWFromConstMem]] .[[SDL_RWFromFile]] .[[SDL_RWFromFP]] .[[SDL_RWFromMem]] .[[SDL_RWread]] .[[SDL_RWseek]] .[[SDL...

1.6k - rev: 11 (current) last modified: 2015-04-26 19:16:57

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...

1.3k - rev: 3 (current) last modified: 2015-09-17 22:01:46

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...

1.3k - rev: 3 (current) last modified: 2015-09-17 22:00:53

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...

1.3k - rev: 9 (current) last modified: 2015-06-20 20:07:06

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...

2.3k - rev: 13 (current) last modified: 2016-11-20 21:53:05

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...

0.8k - rev: 14 (current) last modified: 2013-10-12 19:35:50

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...

0.5k - rev: 19 (current) last modified: 2013-08-10 05:04:50

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit