~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to src/scsi-sense-data.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-08-10 01:16:00 UTC
  • mto: (1.4.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20080810011600-bfb87m1rs6n0qx16
Tags: upstream-0.8.1
ImportĀ upstreamĀ versionĀ 0.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 *  Fri Oct 20 12:24:21 2006
5
5
 *  Copyright  2006  Rouquier Philippe
6
 
 *  <Rouquier Philippe@localhost.localdomain>
 
6
 *  <bonfire-app@wanadoo.fr>
7
7
 ****************************************************************************/
8
8
 
9
9
/*
10
 
 * This program is free software; you can redistribute it and/or modify
 
10
 * Brasero is free software; you can redistribute it and/or modify
11
11
 * it under the terms of the GNU General Public License as published by
12
12
 * the Free Software Foundation; either version 2 of the License, or
13
13
 * (at your option) any later version.
14
14
 * 
15
 
 * This program is distributed in the hope that it will be useful,
 
15
 * Brasero is distributed in the hope that it will be useful,
16
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
18
 * GNU Library General Public License for more details.
28
28
#ifndef _BURN_SENSE_DATA_H
29
29
#define _BURN_SENSE_DATA_H
30
30
 
31
 
#ifdef __cplusplus
32
 
extern "C"
33
 
{
34
 
#endif
 
31
G_BEGIN_DECLS
35
32
 
36
33
#define BRASERO_SENSE_DATA_SIZE         19
37
34
 
38
35
BraseroScsiResult
39
36
brasero_sense_data_process (uchar *sense_data, BraseroScsiErrCode *err);
40
37
 
41
 
#ifdef __cplusplus
42
 
}
43
 
#endif
 
38
G_END_DECLS
44
39
 
45
40
#endif /* _BURN_SENSE_DATA_H */
46
41