~ubuntu-branches/ubuntu/wily/bluez/wily

« back to all changes in this revision

Viewing changes to cups/cups.h

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2008-10-07 12:10:29 UTC
  • Revision ID: james.westby@ubuntu.com-20081007121029-4gup4fmmh2vfo5nh
Tags: upstream-4.12
ImportĀ upstreamĀ versionĀ 4.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *  BlueZ - Bluetooth protocol stack for Linux
 
4
 *
 
5
 *  Copyright (C) 2003-2008  Marcel Holtmann <marcel@holtmann.org>
 
6
 *
 
7
 *
 
8
 *  This program is free software; you can redistribute it and/or modify
 
9
 *  it under the terms of the GNU General Public License as published by
 
10
 *  the Free Software Foundation; either version 2 of the License, or
 
11
 *  (at your option) any later version.
 
12
 *
 
13
 *  This program is distributed in the hope that it will be useful,
 
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 *  GNU General Public License for more details.
 
17
 *
 
18
 *  You should have received a copy of the GNU General Public License
 
19
 *  along with this program; if not, write to the Free Software
 
20
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
21
 *
 
22
 */
 
23
 
 
24
enum {                                  /**** Backend exit codes ****/
 
25
        CUPS_BACKEND_OK = 0,            /* Job completed successfully */
 
26
        CUPS_BACKEND_FAILED = 1,        /* Job failed, use error-policy */
 
27
        CUPS_BACKEND_AUTH_REQUIRED = 2, /* Job failed, authentication required */
 
28
        CUPS_BACKEND_HOLD = 3,          /* Job failed, hold job */
 
29
        CUPS_BACKEND_STOP = 4,          /* Job failed, stop queue */
 
30
        CUPS_BACKEND_CANCEL = 5,        /* Job failed, cancel job */
 
31
        CUPS_BACKEND_RETRY = 6,         /* Failure requires us to retry (BlueZ specific) */
 
32
};