├── .gitignore ├── README.md ├── examples ├── colorful │ └── main.lua ├── scale │ └── main.lua └── simple │ └── main.lua ├── gifcat.lua ├── lib └── lua51.dll └── src ├── jo_gif.c ├── lib ├── lextlib_lua52.h └── lua5.1 │ ├── lauxlib.h │ ├── lua.h │ ├── luaconf.h │ └── lualib.h └── lua_bindings.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/README.md -------------------------------------------------------------------------------- /examples/colorful/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/examples/colorful/main.lua -------------------------------------------------------------------------------- /examples/scale/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/examples/scale/main.lua -------------------------------------------------------------------------------- /examples/simple/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/examples/simple/main.lua -------------------------------------------------------------------------------- /gifcat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/gifcat.lua -------------------------------------------------------------------------------- /lib/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/lib/lua51.dll -------------------------------------------------------------------------------- /src/jo_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/src/jo_gif.c -------------------------------------------------------------------------------- /src/lib/lextlib_lua52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/src/lib/lextlib_lua52.h -------------------------------------------------------------------------------- /src/lib/lua5.1/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/src/lib/lua5.1/lauxlib.h -------------------------------------------------------------------------------- /src/lib/lua5.1/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/src/lib/lua5.1/lua.h -------------------------------------------------------------------------------- /src/lib/lua5.1/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/src/lib/lua5.1/luaconf.h -------------------------------------------------------------------------------- /src/lib/lua5.1/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/src/lib/lua5.1/lualib.h -------------------------------------------------------------------------------- /src/lua_bindings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WetDesertRock/GifCat/HEAD/src/lua_bindings.c --------------------------------------------------------------------------------