usbd_printer.h 343 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2022, sakumisu
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef USBD_PRINTER_H
  7. #define USBD_PRINTER_H
  8. #include "usb_printer.h"
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /* Alloc printer interface driver */
  13. struct usbd_interface *usbd_printer_alloc_intf(void);
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif /* USBD_PRINTER_H */