Snapshot evas

SVN revision: 49532
This commit is contained in:
Carsten Haitzler 2010-06-06 17:26:38 +00:00
parent feda128634
commit 05c5b03d5e
2 changed files with 1 additions and 19 deletions

View File

@ -8,7 +8,7 @@ m4_if(v_rev, [0], [m4_define([v_rev], m4_esyscmd([git log 2> /dev/null | (grep -
##-- When released, remove the dnl on the below line
dnl m4_undefine([v_rev])
##-- When doing snapshots - change soname. remove dnl on below line
m4_define([relname], [ver-pre-svn-06])
m4_define([relname], [ver-svn-06])
m4_define([v_rel], [-release relname])
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
m4_ifdef([v_rev], [m4_define([v_ver], [v_maj.v_min.v_mic.v_rev])],

View File

@ -71,24 +71,6 @@ static Evas_Image_Load_Func evas_image_load_tga_func =
evas_image_load_file_data_tga
};
static int
read_short(FILE *file, short *ret)
{
unsigned char b[2];
if (E_FREAD(b, sizeof(unsigned char), 2, file) != 2) return 0;
*ret = (b[1] << 8) | b[0];
return 1;
}
static int
read_int(FILE *file, int *ret)
{
unsigned char b[4];
if (E_FREAD(b, sizeof(unsigned char), 4, file) != 4) return 0;
*ret = (b[3] << 24) | (b[2] << 16) | (b[1] << 8) | b[0];
return 1;
}
static Eina_Bool
evas_image_load_file_head_tga(Image_Entry *ie, const char *file, const char *key __UNUSED__, int *error)
{