Fix potential undefined references to FILE, for libopkg users.
[oweals/opkg-lede.git] / libopkg / opkg_pathfinder.h
1 /* opkg_pathfinder.h - the opkg package management system
2
3
4    Copyright (C) 2009 Camille Moncelier <moncelier@devlife.org>
5
6    This program is free software; you can redistribute it and/or
7    modify it under the terms of the GNU General Public License as
8    published by the Free Software Foundation; either version 2, or (at
9    your option) any later version.
10
11    This program is distributed in the hope that it will be useful, but
12    WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    General Public License for more details.
15 */
16
17 #ifndef OPKG_PATHFINDER_H
18 #define OPKG_PATHFINDER_H
19
20 #include "config.h"
21
22 #if defined(HAVE_OPENSSL)
23 int pkcs7_pathfinder_verify_signers(PKCS7* p7);
24 #endif
25
26 #if defined(HAVE_SSLCURL)
27 CURLcode curl_ssl_ctx_function(CURL * curl, void * sslctx, void * parm);
28 #endif
29
30
31 #endif