browser.h 451 B

123456789101112131415161718192021
  1. /*
  2. * Hotspot 2.0 client - Web browser
  3. * Copyright (c) 2013, Qualcomm Atheros, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef BROWSER_H
  9. #define BROWSER_H
  10. #ifdef CONFIG_NO_BROWSER
  11. static inline int hs20_web_browser(const char *url)
  12. {
  13. return -1;
  14. }
  15. #else /* CONFIG_NO_BROWSER */
  16. int hs20_web_browser(const char *url);
  17. #endif /* CONFIG_NO_BROWSER */
  18. #endif /* BROWSER_H */