3dphotoshoot
diff libs/imago/modules.c @ 14:06dc8b9b4f89
added libimago, libjpeg and libpng
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 07 Jun 2015 17:25:49 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libs/imago/modules.c Sun Jun 07 17:25:49 2015 +0300 1.3 @@ -0,0 +1,15 @@ 1.4 +/* this file is generated by ./configure, do not edit */ 1.5 +int img_register_jpeg(); 1.6 +int img_register_png(); 1.7 +int img_register_ppm(); 1.8 +int img_register_rgbe(); 1.9 +int img_register_tga(); 1.10 + 1.11 +void img_modules_init(void) 1.12 +{ 1.13 + img_register_jpeg(); 1.14 + img_register_png(); 1.15 + img_register_ppm(); 1.16 + img_register_rgbe(); 1.17 + img_register_tga(); 1.18 +}