NetSurf
certview.h
Go to the documentation of this file.
1 /*
2  * Copyright 2013 Ole Loots <ole@monochrom.net>
3  *
4  * This file is part of NetSurf, http://www.netsurf-browser.org/
5  *
6  * NetSurf is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * NetSurf is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 #ifndef CERTVIEW_H_INCLUDED
20 #define CERTVIEW_H_INCLUDED
21 
22 #include <inttypes.h>
23 #include <sys/types.h>
24 #include <string.h>
25 
26 
27 #include "assert.h"
28 #include "utils/nsoption.h"
29 #include "utils/log.h"
30 #include "desktop/sslcert_viewer.h"
31 
32 struct core_window;
33 
35  GUIWIN * window;
36  //struct atari_treeview_window *tv;/*< The hotlist treeview handle. */
37  struct core_window *tv;
39  bool init;
40 };
41 
42 /**
43  * Initializes and opens an certificate inspector window
44  * \param ssl_d ssl session data created by sslcert_viewer_create_session_data
45  *
46  * The window takes ownership of the session data and free's the memory on exit.
47  */
49 
50 
51 #endif // CERTVIEW_H_INCLUDED
Interface to utility string handling.
struct sslcert_session_data * ssl_session_data
Definition: certview.h:38
struct core_window * tv
Definition: certview.h:37
Option reading and saving interface.
void atari_sslcert_viewer_open(struct sslcert_session_data *ssl_d)
Initializes and opens an certificate inspector window.
Definition: certview.c:251
SSL Certificate verification UI interface.
Netsurf additional integer type formatting macros.
ssl certificate verification context.