2022-08-18 21:41:19 +08:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, sakumisu
|
2022-05-14 21:37:43 +08:00
|
|
|
*
|
2022-08-18 21:41:19 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2022-05-14 21:37:43 +08:00
|
|
|
*/
|
2022-08-18 21:41:19 +08:00
|
|
|
#ifndef USBD_PRINTER_H
|
|
|
|
|
#define USBD_PRINTER_H
|
2022-05-14 21:37:43 +08:00
|
|
|
|
|
|
|
|
#include "usb_printer.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-08-20 16:20:23 +08:00
|
|
|
/* Alloc printer interface driver */
|
|
|
|
|
struct usbd_interface *usbd_printer_alloc_intf(void);
|
2022-05-14 21:37:43 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-08-18 21:41:19 +08:00
|
|
|
#endif /* USBD_PRINTER_H */
|