~ubuntu-branches/ubuntu/vivid/sg3-utils/vivid-proposed

« back to all changes in this revision

Viewing changes to include/sg_cmds_basic.h

  • Committer: Package Import Robot
  • Author(s): Ritesh Raj Sarraf
  • Date: 2013-06-23 16:08:01 UTC
  • mfrom: (1.2.7)
  • Revision ID: package-import@ubuntu.com-20130623160801-7rt7zb2dwk0ba7ut
Tags: 1.36-1
* [69e9dac] Imported Upstream version 1.36
* [cb75936] Add debian compat, level 7
* [68fed25] update README.source
* [3c724fc] Add build-dep autotools-dev
* [e4b9fdd] add destdir to install path
* [7cfff11] Simplify build with debhelper
* [f9a7540] Update symbols for 1.36 release
* [7b0b48d] Enable hardening build

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define SG_CMDS_BASIC_H
3
3
 
4
4
/*
5
 
 * Copyright (c) 2004-2010 Douglas Gilbert.
 
5
 * Copyright (c) 2004-2013 Douglas Gilbert.
6
6
 * All rights reserved.
7
7
 * Use of this source code is governed by a BSD-style
8
8
 * license that can be found in the BSD_LICENSE file.
9
9
 */
10
10
 
 
11
/*
 
12
 * Error, warning and verbose output is sent to the file pointed to by
 
13
 * sg_warnings_strm which is declared in sg_lib.h and can be set with
 
14
 * the sg_set_warnings_strm() function. If not given sg_warnings_strm
 
15
 * defaults to stderr.
 
16
 * If 'noisy' and 'verbose' are both zero then following functions should
 
17
 * not output anything to sg_warnings_strm. If 'noisy' is non-zero and
 
18
 * 'verbose' is zero then Unit Attention, Recovered, Medium and Hardware
 
19
 * errors (sense keys) send output to sg_warnings_strm. Increasing values
 
20
 * of 'verbose' send increasing amounts of (debug) output to
 
21
 * sg_warnings_strm.
 
22
 */
 
23
 
11
24
#ifdef __cplusplus
12
25
extern "C" {
13
26
#endif