~ubuntu-branches/debian/experimental/cups-filters/experimental

« back to all changes in this revision

Viewing changes to cupsfilters/colord.h

  • Committer: Package Import Robot
  • Author(s): Didier Raboud
  • Date: 2015-01-15 18:06:05 UTC
  • mfrom: (1.2.25)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: package-import@ubuntu.com-20150115180605-fnfbqv85k3y5zggk
Tags: upstream-1.0.62
ImportĀ upstreamĀ versionĀ 1.0.62

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (c) 2011-2013, Richard Hughes
 
3
 
 
4
Permission is hereby granted, free of charge, to any person obtaining
 
5
a copy of this software and associated documentation files (the
 
6
"Software"), to deal in the Software without restriction, including
 
7
without limitation the rights to use, copy, modify, merge, publish,
 
8
distribute, sublicense, and/or sell copies of the Software, and to
 
9
permit persons to whom the Software is furnished to do so, subject to
 
10
the following conditions:
 
11
 
 
12
The above copyright notice and this permission notice shall be included
 
13
in all copies or substantial portions of the Software.
 
14
 
 
15
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
16
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
17
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 
18
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 
19
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 
20
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 
21
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
22
 
 
23
MIT Open Source License  -  http://www.opensource.org/
 
24
 
 
25
*/
 
26
 
 
27
 
 
28
#ifndef _CUPS_FILTERS_COLORD_H_
 
29
#  define _CUPS_FILTERS_COLORD_H_
 
30
 
 
31
#  ifdef __cplusplus
 
32
extern "C" {
 
33
#  endif /* __cplusplus */
 
34
 
 
35
/* Common routines for accessing the colord CMS framework */
 
36
 
 
37
#include <cups/raster.h>
 
38
 
 
39
char  **colord_get_qualifier_for_ppd      (ppd_file_t *ppd);
 
40
char   *colord_get_profile_for_device_id  (const char *device_id,
 
41
                                           const char **qualifier_tuple);
 
42
int     colord_get_inhibit_for_device_id  (const char *device_id);
 
43
 
 
44
#  ifdef __cplusplus
 
45
}
 
46
#  endif /* __cplusplus */
 
47
 
 
48
#endif /* !_CUPS_FILTERS_COLORD_H_ */