beta-0.89.2
[luatex.git] / source / texk / web2c / luatexdir / luazip / src / luazip.h
blob84bfd40b4587f3c314f511680fedf1b40088e5e7
1 /*
2 LuaZip - Reading files inside zip files.
3 http://www.keplerproject.org/luazip/
5 Author: Danilo Tuler
6 Copyright (c) 2003-2006 Kepler Project
8 $Id: luazip.h,v 1.4 2006/03/23 20:44:53 carregal Exp $
9 */
11 #ifndef luazip_h
12 #define luazip_h
14 #include "lua.h"
16 #ifndef LUAZIP_API
17 #define LUAZIP_API LUA_API
18 #endif
20 #define LUA_ZIPLIBNAME "zip"
21 LUAZIP_API int luaopen_zip (lua_State *L);
23 #endif