scan.h 553 B

123456789101112131415161718192021
  1. /* Helpers for managing scan queues
  2. *
  3. * See copyright notice in main.c
  4. */
  5. #ifndef _ORINOCO_SCAN_H_
  6. #define _ORINOCO_SCAN_H_
  7. /* Forward declarations */
  8. struct orinoco_private;
  9. struct agere_ext_scan_info;
  10. /* Add scan results */
  11. void orinoco_add_extscan_result(struct orinoco_private *priv,
  12. struct agere_ext_scan_info *atom,
  13. size_t len);
  14. void orinoco_add_hostscan_results(struct orinoco_private *dev,
  15. unsigned char *buf,
  16. size_t len);
  17. void orinoco_scan_done(struct orinoco_private *priv, bool abort);
  18. #endif /* _ORINOCO_SCAN_H_ */