~mimose/+junk/hplip-3.16.11

« back to all changes in this revision

Viewing changes to scan/sane/escl.h

  • Committer: guoyalong
  • Date: 2017-09-20 10:13:05 UTC
  • Revision ID: guoyalong@kylinos.cn-20170920101305-82zaolzpv1qghz29
Modified debian/control & debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/************************************************************************************\
 
2
 
 
3
  escl.h - HP SANE backend support for eSCL based multi-function peripherals
 
4
 
 
5
  (c) 2012-15 Copyright HP Development Company, LP
 
6
 
 
7
  Permission is hereby granted, free of charge, to any person obtaining a copy 
 
8
  of this software and associated documentation files (the "Software"), to deal 
 
9
  in the Software without restriction, including without limitation the rights 
 
10
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
 
11
  of the Software, and to permit persons to whom the Software is furnished to do 
 
12
  so, subject to the following conditions:
 
13
 
 
14
  The above copyright notice and this permission notice shall be included in all
 
15
  copies or substantial portions of the Software.
 
16
 
 
17
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
 
18
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 
 
19
  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 
 
20
  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 
 
21
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 
 
22
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
23
 
 
24
  Primary Author: Sarbeswar Meher
 
25
 
 
26
\************************************************************************************/
 
27
 
 
28
# ifndef _ESCL_H
 
29
# define _ESCL_H
 
30
 
 
31
# include "sane.h"
 
32
# include "hpip.h"
 
33
# include "hpmud.h"
 
34
 
 
35
SANE_Status escl_open(SANE_String_Const device, SANE_Handle *handle);
 
36
void escl_close(SANE_Handle handle);
 
37
const SANE_Option_Descriptor * escl_get_option_descriptor(SANE_Handle handle, SANE_Int option);
 
38
SANE_Status escl_control_option(SANE_Handle handle, SANE_Int option, SANE_Action action, void *value, SANE_Int *info);
 
39
SANE_Status escl_get_parameters(SANE_Handle handle, SANE_Parameters *params);
 
40
SANE_Status escl_start(SANE_Handle handle);
 
41
SANE_Status escl_read(SANE_Handle handle, SANE_Byte *data, SANE_Int maxLength, SANE_Int *length);
 
42
void escl_cancel(SANE_Handle handle);
 
43
 
 
44
# endif  // _ESCL_H
 
45