2003-10-23 04:09:17 +04:00
|
|
|
/*
|
2006-11-27 18:35:18 +03:00
|
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
2003-10-23 04:09:17 +04:00
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NETSURF_DESKTOP_401LOGIN_H
|
|
|
|
#define NETSURF_DESKTOP_401LOGIN_H
|
|
|
|
|
2004-01-05 05:10:59 +03:00
|
|
|
#include "netsurf/utils/config.h"
|
2003-10-25 23:20:13 +04:00
|
|
|
#include "netsurf/content/content.h"
|
|
|
|
#include "netsurf/desktop/browser.h"
|
|
|
|
|
2004-01-05 05:10:59 +03:00
|
|
|
#ifdef WITH_AUTH
|
|
|
|
|
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
|