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
|
|
|
|
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "utils/config.h"
|
2008-07-27 03:42:24 +04:00
|
|
|
#ifdef WITH_AUTH
|
|
|
|
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "content/content.h"
|
|
|
|
#include "desktop/browser.h"
|
2003-10-25 23:20:13 +04:00
|
|
|
|
|
|
|
void gui_401login_open(struct browser_window *bw, struct content *c,
|
2006-02-23 18:06:54 +03:00
|
|
|
const char *realm);
|
2003-10-23 04:09:17 +04:00
|
|
|
|
|
|
|
#endif
|
2004-01-05 05:10:59 +03:00
|
|
|
|
|
|
|
#endif
|