blob: 84bfd40b4587f3c314f511680fedf1b40088e5e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
LuaZip - Reading files inside zip files.
http://www.keplerproject.org/luazip/
Author: Danilo Tuler
Copyright (c) 2003-2006 Kepler Project
$Id: luazip.h,v 1.4 2006/03/23 20:44:53 carregal Exp $
*/
#ifndef luazip_h
#define luazip_h
#include "lua.h"
#ifndef LUAZIP_API
#define LUAZIP_API LUA_API
#endif
#define LUA_ZIPLIBNAME "zip"
LUAZIP_API int luaopen_zip (lua_State *L);
#endif
|