istereo
diff libs/imago2/modules.c @ 26:862a3329a8f0
wohooo, added a shitload of code from zlib/libpng/libjpeg. When the good lord was raining shared libraries the iphone held a fucking umbrella...
author | John Tsiombikas <nuclear@mutantstargoat.com> |
---|---|
date | Thu, 08 Sep 2011 06:28:38 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libs/imago2/modules.c Thu Sep 08 06:28:38 2011 +0300 1.3 @@ -0,0 +1,11 @@ 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 + 1.9 +void img_modules_init(void) 1.10 +{ 1.11 + img_register_jpeg(); 1.12 + img_register_png(); 1.13 + img_register_ppm(); 1.14 +}