kopia lustrzana https://gitlab.com/sane-project/backends
24 wiersze
554 B
C
24 wiersze
554 B
C
/*
|
|
Copyright (C) 2008, Panasonic Russia Ltd.
|
|
*/
|
|
/* sane - Scanner Access Now Easy.
|
|
Panasonic KV-S1020C / KV-S1025C USB scanners.
|
|
*/
|
|
|
|
#ifndef __KVS1025_USB_H
|
|
#define __KVS1025_USB_H
|
|
|
|
#include "kvs1025_cmds.h"
|
|
|
|
SANE_Status kv_usb_enum_devices ();
|
|
SANE_Status kv_usb_open (PKV_DEV dev);
|
|
SANE_Bool kv_usb_already_open (PKV_DEV dev);
|
|
void kv_usb_close (PKV_DEV dev);
|
|
void kv_usb_cleanup ();
|
|
|
|
SANE_Status kv_usb_send_command (usb_dev_handle * usb_handle,
|
|
PKV_CMD_HEADER header,
|
|
PKV_CMD_RESPONSE response);
|
|
|
|
#endif /* #ifndef __KVS1025_USB_H */
|