]> git.ipfire.org Git - people/ms/libloc.git/blame - src/loc/libloc.h
Draft initial database format
[people/ms/libloc.git] / src / loc / libloc.h
CommitLineData
46aded9a
MT
1/*
2 libloc - A library to determine the location of someone on the Internet
3
4 Copyright (C) 2017 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
17#ifndef LIBLOC_H
18#define LIBLOC_H
19
20#include <stdarg.h>
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26struct loc_ctx;
27struct loc_ctx *loc_ref(struct loc_ctx* ctx);
28struct loc_ctx *loc_unref(struct loc_ctx* ctx);
29
30int loc_new(struct loc_ctx** ctx);
31void loc_set_log_fn(struct loc_ctx* ctx,
32 void (*log_fn)(struct loc_ctx* ctx,
33 int priority, const char* file, int line, const char* fn,
34 const char* format, va_list args));
35int loc_get_log_priority(struct loc_ctx* ctx);
36void loc_set_log_priority(struct loc_ctx* ctx, int priority);
37
2601e83e
MT
38int loc_load(struct loc_ctx* ctx, const char* path);
39
46aded9a
MT
40#ifdef __cplusplus
41} /* extern "C" */
42#endif
43
44#endif