Wiki Page Content

Results 1 - 25 of 35 results out of about 6839 pages. (3.95 seconds)

SDL_RWops . . . 19 matches
... = SDL_RWops = A structure that provides an abstract interface to stream I/O. Applications can generally ignore the specifics of this structure's internals and treat them as opaq...

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

SDL_AllocRW . . . 16 matches
... = SDL_AllocRW = Use this function to allocate an empty, unpopulated [[SDL_RWops]] structure. <<TableOfContents()>> == Syntax == {{{#!highlight cpp SDL_RWops* SDL_AllocRW(void)...

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

SDL_FreeRW . . . 9 matches
... = SDL_FreeRW = Use this function to free an [[SDL_RWops]] structure allocated by [[SDL_AllocRW]](). <<TableOfContents()>> == Syntax == {{{#!highlight cpp void SDL_FreeRW(SDL_R...

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

SDL_RWclose . . . 8 matches
... = SDL_RWclose = Use this function to close and free an allocated [[SDL_RWops]] structure. <<TableOfContents()>> == Syntax == {{{#!highlight cpp int SDL_RWclose(struct SDL_RWop...

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

SDL_RWFromMem . . . 7 matches
...L_RWFromMem = Use this function to prepare a read-write memory buffer for use with [[SDL_RWops]]. <<TableOfContents()>> == Syntax == {{{#!highlight cpp SDL_RWops* SDL_RWFromMem(...

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

SDL_RWFromFP . . . 6 matches
... = SDL_RWFromFP = Use this function to create an [[SDL_RWops]] structure from a standard I/O file pointer (stdio.h's `FILE*`). <<TableOfContents()>> == Syntax == {{{#!highlight...

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

SDL_RWwrite . . . 5 matches
... = SDL_RWwrite = Use this function to write to an [[SDL_RWops]] data stream. <<TableOfContents()>> == Syntax == {{{#!highlight cpp size_t SDL_RWwrite(struct SDL_RWops* context,...

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

SDL_RWtell . . . 5 matches
... = SDL_RWtell = Use this function to determine the current read/write offset in an [[SDL_RWops]] data stream. <<TableOfContents()>> == Syntax == {{{#!highlight cpp Sint64 SDL_RW...

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

SDL_RWseek . . . 5 matches
... = SDL_RWseek = Use this function to seek within an [[SDL_RWops]] data stream. <<TableOfContents()>> == Syntax == {{{#!highlight cpp Sint64 SDL_RWseek(SDL_RWops* context, ...

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

SDL_RWread . . . 5 matches
...ce. <<TableOfContents()>> == Syntax == {{{#!highlight cpp size_t SDL_RWread(struct SDL_RWops* context, void* ptr, size_t ...

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

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_RWFromConstMem . . . 5 matches
...y buffer for use with RWops. <<TableOfContents()>> == Syntax == {{{#!highlight cpp SDL_RWops* SDL_RWFromConstMem(const void* mem, int size)...

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

SDL_RWsize . . . 4 matches
...*^*^*^*^* = SDL_RWsize = Use this macro to get the size of the data stream in an [[SDL_RWops]]. <<TableOfContents()>> == Syntax == {{{#!highlight cpp Sint64 SDL_RWsize(SDL_R...

1.4k - rev: 2 (current) last modified: 2015-04-10 23:47:45

SDL_WriteU8 . . . 3 matches
...iting this page*^*^*^*^* = SDL_WriteU8 = Use this function to write a byte to an [[SDL_RWops]]. <<TableOfContents()>> == Syntax == {{{#!highlight cpp size_t SDL_WriteU8(SDL_...

1.5k - rev: 1 (current) last modified: 2015-12-04 22:45:05

SDL_ReadU8 . . . 3 matches
...iting this page*^*^*^*^* = SDL_ReadU8 = Use this function to read a byte from an [[SDL_RWops]]. <<TableOfContents()>> == Syntax == {{{#!highlight cpp Uint8 SDL_ReadU8(SDL_RW...

1.4k - rev: 1 (current) last modified: 2015-12-04 22:43:57

SDL_WriteLE64 . . . 2 matches
... = SDL_WriteLE64 = Use this function to write 64 bits in native format to a [[SDL_RWops]] as little-endian data. <<TableOfContents()>> == Syntax == {{{#!highlight cpp size_t SD...

0.8k - rev: 5 (current) last modified: 2015-12-19 22:27:01

SDL_WriteLE32 . . . 2 matches
... = SDL_WriteLE32 = Use this function to write 32 bits in native format to a [[SDL_RWops]] as little-endian data. <<TableOfContents()>> == Syntax == {{{#!highlight cpp size_t SD...

0.8k - rev: 5 (current) last modified: 2015-12-19 22:26:11

SDL_WriteLE16 . . . 2 matches
... = SDL_WriteLE16 = Use this function to write 16 bits in native format to a [[SDL_RWops]] as little-endian data. <<TableOfContents()>> == Syntax == {{{#!highlight cpp size_t SD...

0.8k - rev: 6 (current) last modified: 2015-12-19 22:25:09

SDL_WriteBE64 . . . 2 matches
... = SDL_WriteBE64 = Use this function to write 64 bits in native format to a [[SDL_RWops]] as big-endian data. <<TableOfContents()>> == Syntax == {{{#!highlight cpp size_t SDL_W...

0.8k - rev: 5 (current) last modified: 2015-12-19 22:27:27

SDL_WriteBE32 . . . 2 matches
... = SDL_WriteBE32 = Use this function to write 32 bits in native format to a [[SDL_RWops]] as big-endian data. <<TableOfContents()>> == Syntax == {{{#!highlight cpp size_t SDL_W...

0.8k - rev: 5 (current) last modified: 2015-12-19 22:26:37

SDL_WriteBE16 . . . 2 matches
... = SDL_WriteBE16 = Use this function to write 16 bits in native format to a [[SDL_RWops]] as big-endian data. <<TableOfContents()>> == Syntax == {{{#!highlight cpp size_t SDL_W...

0.8k - rev: 5 (current) last modified: 2015-12-19 22:25:48

SDL_SaveDollarTemplate . . . 2 matches
...t cpp int SDL_SaveDollarTemplate(SDL_GestureID gestureId, SDL_RWops* dst) }}} == Function Parameters == ||'''gestureId'''||a gesture id|| ||'''dst'...

1.5k - rev: 3 (current) last modified: 2016-10-21 22:13:24

SDL_SaveAllDollarTemplates . . . 2 matches
...TableOfContents()>> == Syntax == {{{#!highlight cpp int SDL_SaveAllDollarTemplates(SDL_RWops* dst) }}} == Function Parameters == ||'''dst'''||a [[SDL_RWops]] to save to|| == ...

1.5k - rev: 3 (current) last modified: 2016-10-21 22:12:15

SDL_ReadLE64 . . . 2 matches
... = SDL_ReadLE64 = Use this function to read 64 bits of little-endian data from an [[SDL_RWops]] and return in native format. <<TableOfContents()>> == Syntax == {{{#!highlight c...

0.7k - rev: 4 (current) last modified: 2013-08-08 18:23:16

SDL_ReadLE32 . . . 2 matches
... = SDL_ReadLE32 = Use this function to read 32 bits of little-endian data from an [[SDL_RWops]] and return in native format. <<TableOfContents()>> == Syntax == {{{#!highlight c...

0.7k - rev: 5 (current) last modified: 2013-08-08 18:22:37

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