Reverted SDL_LoadICO_RW() addition, this should go in SDL_image

This commit is contained in:
Sam Lantinga
2009-01-12 06:21:34 +00:00
parent 276a01a55e
commit 42a8aa5af2
2 changed files with 0 additions and 288 deletions

View File

@@ -157,12 +157,6 @@ extern DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface * surface);
extern DECLSPEC SDL_Surface *SDLCALL SDL_LoadBMP_RW(SDL_RWops * src,
int freesrc);
/*
* Load Icon best quality icon from ICO file and return as RGBA surface
*/
extern DECLSPEC SDL_Surface *SDLCALL SDL_LoadICO_RW(SDL_RWops * src,
int freesrc);
/* Convenience macro -- load a surface from a file */
#define SDL_LoadBMP(file) SDL_LoadBMP_RW(SDL_RWFromFile(file, "rb"), 1)