1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/***************************************************************************
* burn-spc1.h
*
* Fri Oct 20 13:18:29 2006
* Copyright 2006 Rouquier Philippe
* <bonfire-app@wanadoo.fr>
****************************************************************************/
/*
* Brasero is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Brasero is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA
*/
#include <glib.h>
#include "scsi-base.h"
#include "scsi-error.h"
#include "scsi-mode-pages.h"
#ifndef _BURN_SPC1_H
#define _BURN_SPC1_H
G_BEGIN_DECLS
BraseroScsiResult
brasero_spc1_test_unit_ready (BraseroDeviceHandle *handle,
BraseroScsiErrCode *error);
BraseroScsiResult
brasero_spc1_mode_sense_get_page (BraseroDeviceHandle *handle,
BraseroSPCPageType num,
BraseroScsiModeData **data,
int *data_size,
BraseroScsiErrCode *error);
BraseroScsiResult
brasero_spc1_mode_select (BraseroDeviceHandle *handle,
BraseroScsiModeData *data,
int size,
BraseroScsiErrCode *error);
G_END_DECLS
#endif /* _BURN_SPC1_H */
|