image: cleanup header declaration

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-04-11 11:50:55 +02:00
parent 46ce0c1da1
commit 301affeaed
2 changed files with 1 additions and 3 deletions

View File

@ -128,7 +128,7 @@ image_new_from_argb32(int width, int height, uint32_t *data)
* \param filename The image file to load.
* \return A new image.
*/
image_t *
static image_t *
image_new_from_file(const char *filename)
{
Imlib_Image imimage;

View File

@ -56,9 +56,7 @@ image_delete(image_t **i)
DO_RCNT(image_t, image, image_delete)
image_t * image_new_from_file(const char *);
image_t * image_new_from_argb32(int, int, uint32_t *);
uint8_t * image_data_argb32_get(image_t *);
int luaA_image_userdata_new(lua_State *, image_t *);