- Timestamp:
- Jan 13, 2005, 4:26:55 PM (18 years ago)
- Location:
- pwntcha/trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/share/Makefile.am
r432 r459 2 2 NULL = 3 3 EXTRA_DIST = \ 4 font_authimage.png \ 4 5 font_linuxfr.png \ 5 6 font_phpbb.png \ 6 7 font_slashdot.png \ 7 8 font_vbulletin.png \ 9 font_freesans_24_09AZ.bmp \ 10 font_comic_24_az_messed.bmp \ 11 font_comic_32_az.bmp \ 12 font_freemonobold_24_az.bmp \ 13 font_freemonobold_32_az.bmp \ 14 font_freesans_24_09AZ.bmp \ 15 font_freesansbold_32_az.bmp \ 16 font_freesansbold_36_az_messed.bmp \ 17 font_stencil_23_AZ.bmp \ 18 font_stencil_24_AZ.bmp \ 19 x_font_comic_24_az_messed.bmp \ 20 x_font_comic_32_az.bmp \ 21 x_font_freemonobold_24_az.bmp \ 22 x_font_freemonobold_32_az.bmp \ 23 x_font_freesansbold_32_az.bmp \ 24 x_font_freesansbold_36_az_messed.bmp \ 8 25 $(NULL) 26 -
pwntcha/trunk/src/Makefile.am
r456 r459 11 11 clubic.c \ 12 12 linuxfr.c \ 13 lmt.c \ 13 14 paypal.c \ 14 15 phpbb.c \ -
pwntcha/trunk/src/main.c
r456 r459 139 139 else if(!strcmp(mode, "linuxfr")) 140 140 result = decode_linuxfr(img); 141 else if(!strcmp(mode, "lmt")) 142 result = decode_lmt(img); 141 143 else if(!strcmp(mode, "paypal")) 142 144 result = decode_paypal(img); … … 163 165 result = decode_linuxfr(img); 164 166 } 167 else if(img->width == 69 && img->height == 35) 168 { 169 dprintf("autodetected lmt.lv captcha\n"); 170 result = decode_lmt(img); 171 } 165 172 else if(img->width == 208 && img->height == 26) 166 173 {
Note: See TracChangeset
for help on using the changeset viewer.