ozhcd.h 507 B

123456789101112131415
  1. /* -----------------------------------------------------------------------------
  2. * Copyright (c) 2011 Ozmo Inc
  3. * Released under the GNU General Public License Version 2 (GPLv2).
  4. * ---------------------------------------------------------------------------*/
  5. #ifndef _OZHCD_H
  6. #define _OZHCD_H
  7. int oz_hcd_init(void);
  8. void oz_hcd_term(void);
  9. struct oz_port *oz_hcd_pd_arrived(void *ctx);
  10. void oz_hcd_pd_departed(struct oz_port *hport);
  11. void oz_hcd_pd_reset(void *hpd, void *hport);
  12. #endif /* _OZHCD_H */