hostap/src/utils/browser.h
Jouni Malinen d0b79d74b6 HS 2.0R2: Add wrapper functions for WebKit
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
2014-03-12 01:09:21 +02:00

21 lines
451 B
C

/*
* Hotspot 2.0 client - Web browser
* Copyright (c) 2013, Qualcomm Atheros, Inc.
*
* This software may be distributed under the terms of the BSD license.
* See README for more details.
*/
#ifndef BROWSER_H
#define BROWSER_H
#ifdef CONFIG_NO_BROWSER
static inline int hs20_web_browser(const char *url)
{
return -1;
}
#else /* CONFIG_NO_BROWSER */
int hs20_web_browser(const char *url);
#endif /* CONFIG_NO_BROWSER */
#endif /* BROWSER_H */