2003-10-23 04:09:17 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-10-23 04:09:17 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NETSURF_DESKTOP_401LOGIN_H
|
|
|
|
#define NETSURF_DESKTOP_401LOGIN_H
|
|
|
|
|
2010-04-15 03:03:49 +04:00
|
|
|
#include <stdbool.h>
|
2008-07-27 03:42:24 +04:00
|
|
|
|
2010-04-15 03:03:49 +04:00
|
|
|
#include "utils/config.h"
|
2012-10-11 14:20:02 +04:00
|
|
|
#include "utils/nsurl.h"
|
2010-04-15 03:03:49 +04:00
|
|
|
#include "utils/errors.h"
|
2003-10-25 23:20:13 +04:00
|
|
|
|
2012-10-11 14:20:02 +04:00
|
|
|
void gui_401login_open(nsurl *url, const char *realm,
|
2010-04-15 03:03:49 +04:00
|
|
|
nserror (*cb)(bool proceed, void *pw), void *cbpw);
|
2003-10-23 04:09:17 +04:00
|
|
|
|
|
|
|
#endif
|