1 /* sane - Scanner Access Now Easy. 2 Copyright (C) 1997 Andreas Czechanowski 3 This file is part of the SANE package. 4 5 This program is free software; you can redistribute it and/or 6 modify it under the terms of the GNU General Public License as 7 published by the Free Software Foundation; either version 2 of the 8 License, or (at your option) any later version. 9 10 This program is distributed in the hope that it will be useful, but 11 WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 General Public License for more details. 14 15 You should have received a copy of the GNU General Public License 16 along with this program. If not, see <https://www.gnu.org/licenses/>. 17 18 As a special exception, the authors of SANE give permission for 19 additional uses of the libraries contained in this release of SANE. 20 21 The exception is that, if you link a SANE library with other files 22 to produce an executable, this does not by itself cause the 23 resulting executable to be covered by the GNU General Public 24 License. Your use of that executable is in no way restricted on 25 account of linking the SANE library code into it. 26 27 This exception does not, however, invalidate any other reasons why 28 the executable file might be covered by the GNU General Public 29 License. 30 31 If you submit changes to SANE to the maintainers to be included in 32 a subsequent release, you agree by submitting the changes that 33 those changes may be distributed with this exception intact. 34 35 If you write modifications of your own for SANE, it is your choice 36 whether to permit this exception to apply to your modifications. 37 If you do not wish that, delete this exception notice. */ 38 #ifndef sanei_ab306_h 39 #define sanei_ab306_h 40 41 #include <sys/types.h> 42 43 #include <sane/sane.h> 44 45 SANE_Status sanei_ab306_open (const char *dev, int *fd); 46 void sanei_ab306_close (int fd); 47 void sanei_ab306_exit (void); 48 49 SANE_Status sanei_ab306_get_io_privilege (int fd); 50 SANE_Status sanei_ab306_test_ready (int fd); 51 SANE_Status sanei_ab306_cmd (int fd, const void *src, size_t src_size, 52 void *dst, size_t *dst_size); 53 SANE_Status sanei_ab306_rdata (int fd, int planes, 54 SANE_Byte *buf, int lines, int bpl); 55 56 #endif /* sanei_ab306_h */ 57