summaryrefslogtreecommitdiff
path: root/frontends/windows/login.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2018-08-18 23:30:12 +0100
committerVincent Sanders <vince@kyllikki.org>2018-08-18 23:30:12 +0100
commita6c595f4f305c43d9da825ad31c0011fe02d0684 (patch)
treefbf00062ed627e21d3c0217e77f6cc341078ce68 /frontends/windows/login.h
parentc938d1962bed31f0723707fc978bb65ab5a47ef2 (diff)
downloadnetsurf-a6c595f4f305c43d9da825ad31c0011fe02d0684.tar.gz
netsurf-a6c595f4f305c43d9da825ad31c0011fe02d0684.tar.bz2
add win32 http authentication dialog
Diffstat (limited to 'frontends/windows/login.h')
-rw-r--r--frontends/windows/login.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/frontends/windows/login.h b/frontends/windows/login.h
new file mode 100644
index 000000000..411306230
--- /dev/null
+++ b/frontends/windows/login.h
@@ -0,0 +1,39 @@
+/*
+ * Copyright 2018 Vincent Sanders <vince@netsurf-browser.org>
+ *
+ * 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/>.
+ */
+
+/**
+ * \file
+ * Basic authentication login interfaces.
+ */
+
+#ifndef NSW32_LOGIN_H
+#define NSW32_LOGIN_H
+
+/**
+ * login window request.
+ */
+extern nserror nsw32_401login(nsurl *url,
+ const char *realm,
+ const char *username,
+ const char *password,
+ nserror (*cb)(const char *username,
+ const char *password,
+ void *cbctx),
+ void *cbctx);
+
+#endif