~ubuntu-branches/ubuntu/saucy/sane-backends/saucy

« back to all changes in this revision

Viewing changes to backend/pixma.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2011-02-14 14:28:56 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110214142856-6gxjetg88q9zctid
Tags: 1.0.22-0ubuntu1
* New upstream release
* debian/control:
  - Use standards version 3.9.1
* debian/patches/allow_dll.d_symlinks.patch:
* debian/patches/fix_epson2_cancel.patch:
* debian/patches/fix_epson2_commands.patch:
* debian/patches/fix_xerox_mfp_color_mode.patch:
* debian/patches/genesys_disable_raw_data_log.patch:
* debian/patches/no_translations.patch:
* debian/patches/saned_exit_avahi_process.patch:
* debian/patches/scsi_perfection_2450.patch:
* debian/patches/scsi_scanjet_4c.patch:
* debian/patches/xerox_mfp_new_ids.patch:
  - Applied upstream
* debian/watch:
  - Dropped, the URL is not consistent between releases

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
typedef uint32_t uint32_t;
104
104
#endif /* HAVE_STDINT_H */
105
105
 
 
106
#ifdef HAVE_INTTYPES_H 
 
107
# include <inttypes.h>          /* available in ISO C99 */
 
108
#endif /* HAVE_INTTYPES_H */
 
109
 
106
110
/** \addtogroup API
107
111
 *  @{ */
108
112
/** \name Version of the driver */
142
146
#define PIXMA_CAP_ADFDUP       ((1 << 7) | PIXMA_CAP_ADF)
143
147
#define PIXMA_CAP_CIS          (0)
144
148
#define PIXMA_CAP_CCD          (1 << 8)
 
149
#define PIXMA_CAP_LINEART      (1 << 9)
145
150
#define PIXMA_CAP_EXPERIMENT   (1 << 31)
146
151
/**@}*/
147
152
 
244
249
    /** Size in bytes of the whole image.
245
250
     *  image_size = line_size * h <br>
246
251
     *  This field will be set by pixma_check_scan_param(). */
247
 
  unsigned image_size;
 
252
  uint64_t image_size;
248
253
 
249
254
    /** Channels per pixel. 1 = grayscale, 3 = color */
250
255
  unsigned channels;