]> git.ipfire.org Git - people/ms/libloc.git/blob - src/loc/libloc.h
5cf31c5b14d984db78fc29dc8eddb840f1b66c36
[people/ms/libloc.git] / src / loc / libloc.h
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
23 extern "C" {
24 #endif
25
26 struct loc_ctx;
27 struct loc_ctx *loc_ref(struct loc_ctx* ctx);
28 struct loc_ctx *loc_unref(struct loc_ctx* ctx);
29
30 int loc_new(struct loc_ctx** ctx);
31 void 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));
35 int loc_get_log_priority(struct loc_ctx* ctx);
36 void loc_set_log_priority(struct loc_ctx* ctx, int priority);
37
38 int loc_load(struct loc_ctx* ctx, const char* path);
39
40 #ifdef __cplusplus
41 } /* extern "C" */
42 #endif
43
44 #endif