1 /* HP Scanjet 3900 series - Stand-alone/SANE Backend controller
2 
3    Copyright (C) 2005-2008 Jonathan Bravo Lopez <jkdsoft@gmail.com>
4 
5    This file is part of the SANE package.
6 
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    as published by the Free Software Foundation; either version 2
10    of the License, or (at your option) any later version.
11 
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16 
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <https://www.gnu.org/licenses/>.
19 
20    As a special exception, the authors of SANE give permission for
21    additional uses of the libraries contained in this release of SANE.
22 
23    The exception is that, if you link a SANE library with other files
24    to produce an executable, this does not by itself cause the
25    resulting executable to be covered by the GNU General Public
26    License.  Your use of that executable is in no way restricted on
27    account of linking the SANE library code into it.
28 
29    This exception does not, however, invalidate any other reasons why
30    the executable file might be covered by the GNU General Public
31    License.
32 
33    If you submit changes to SANE to the maintainers to be included in
34    a subsequent release, you agree by submitting the changes that
35    those changes may be distributed with this exception intact.
36 
37    If you write modifications of your own for SANE, it is your choice
38    whether to permit this exception to apply to your modifications.
39    If you do not wish that, delete this exception notice.
40 */
41 
42 
43 /* Backend info */
44 #define BACKEND_NAME    hp3900
45 #define BACKEND_VRSN    "0.12"
46 #define BACKEND_AUTHOR  "Jonathan Bravo Lopez (JKD)"
47 #define BACKEND_EMAIL   "jkdsoft@gmail.com"
48 #define BACKEND_URL     "http://jkdsoftware.dyndns.org"
49 #define BACKEND_LICENSE "General Public License (GPL)"
50 
51 /* if you want to compile this one as a sane backend then comment next line */
52 /* Caution: Sources included in SANE project don't provide hp3900_stdalone.c */
53 
54 /*#define STANDALONE*/
55 
56 #ifdef STANDALONE
57 #include "hp3900_stdalone.c"
58 #else
59 #include "hp3900_sane.c"
60 #endif
61