#pragma section-numbers off #pragma disable-camelcase = SDL_LoadBMP_RW = Use this function to load a BMP image from a seekable SDL data stream (memory or file). <> == Syntax == {{{#!highlight cpp SDL_Surface* SDL_LoadBMP_RW(SDL_RWops* src, int freesrc) }}} == Function Parameters == ||'''src'''||the data stream for the surface|| ||'''freesrc'''||non-zero to close the stream after being read|| == Return Value == Returns a pointer to a new [[SDL_Surface]] structure or NULL if there was an error; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp You can add your code example here }}} == Remarks == The new surface should be freed with [[SDL_FreeSurface]](). == Related Functions == .[[SDL_FreeSurface]] .[[SDL_LoadBMP]] .[[SDL_SaveBMP_RW]] ---- [[CategoryAPI]], [[CategorySurface]]