]> git.ipfire.org Git - location/libloc.git/blame - src/lua/location.h
lua: Add compatibility function to compile with Lua >= 5.1
[location/libloc.git] / src / lua / location.h
CommitLineData
6ae775f9
MT
1/*
2 libloc - A library to determine the location of someone on the Internet
3
4 Copyright (C) 2024 IPFire Development Team <info@ipfire.org>
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15*/
16
7eaabd10
MT
17#ifndef LUA_LOCATION_LOCATION_H
18#define LUA_LOCATION_LOCATION_H
19
6ae775f9
MT
20#include <lua.h>
21
f51350bb
MT
22#include <libloc/libloc.h>
23
031bae06
MT
24#include "compat.h"
25
f51350bb
MT
26extern struct loc_ctx* ctx;
27
6ae775f9 28int luaopen_location(lua_State* L);
7eaabd10 29
e914e3ca
MT
30static inline int register_class(lua_State* L,
31 const char* name, const struct luaL_Reg* functions) {
32 // Create a new metatable
33 luaL_newmetatable(L, name);
34
35 // Set functions
36 luaL_setfuncs(L, functions, 0);
37
38 // Configure metatable
39 lua_pushvalue(L, -1);
40 lua_setfield(L, -2, "__index");
41
42 return 1;
43}
44
7eaabd10 45#endif /* LUA_LOCATION_LOCATION_H */